diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-05-23 23:55:42 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-05-23 23:55:42 -0700 |
commit | c4311b6471fa5d884eafb4adb835e4e0516c7c96 (patch) | |
tree | 54c665a662e94d559d14c2adbfcdb050a8e6e534 /blastem.c | |
parent | 1628fcfc93742b30ff200a9a2f9454fb6d597c2e (diff) |
Get rid of debug puts and limit based on audio rather than frame rate by default.
Diffstat (limited to 'blastem.c')
-rw-r--r-- | blastem.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ io_port gamepad_2; int headless = 0; int z80_enabled = 1; -int frame_limit = 1; +int frame_limit = 0; #ifndef MIN #define MIN(a,b) ((a) < (b) ? (a) : (b)) @@ -1416,7 +1416,7 @@ int main(int argc, char ** argv) debug = 1; break; case 'f': - frame_limit = 0; + frame_limit = 1; break; case 'l': address_log = fopen("address.log", "w"); |