summaryrefslogtreecommitdiff
path: root/vgmplay.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2014-02-19 00:44:19 -0800
committerMichael Pavone <pavone@retrodev.com>2014-02-19 00:44:19 -0800
commitfc7a0f0d8a029e2ca299147435000b25d2ecd9a5 (patch)
treed3749ce6017da119c373dc4fdc9303887f5bc76e /vgmplay.c
parent9383ce79b4f1f006cb1a7f62f1fcc8016e31ad04 (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vgmplay.c b/vgmplay.c
index 3132a13..f29a9a5 100644
--- a/vgmplay.c
+++ b/vgmplay.c
@@ -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