diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-02-19 00:44:19 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-02-19 00:44:19 -0800 |
commit | fc7a0f0d8a029e2ca299147435000b25d2ecd9a5 (patch) | |
tree | d3749ce6017da119c373dc4fdc9303887f5bc76e /vgmplay.c | |
parent | 9383ce79b4f1f006cb1a7f62f1fcc8016e31ad04 (diff) |
Fix type mismatch on headless global that was causing a crash in the vgm player on ARM
Diffstat (limited to 'vgmplay.c')
-rw-r--r-- | vgmplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ void handle_joy_dpad(int joystick, int dpadnum, uint8_t value) { } -uint8_t headless = 0; +int headless = 0; #define CYCLE_LIMIT MCLKS_NTSC/60 #define MAX_SOUND_CYCLES 100000 |