diff options
Diffstat (limited to 'apps/plugins/chip8.c')
-rw-r--r-- | apps/plugins/chip8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c index 9c4b09e163..4767898206 100644 --- a/apps/plugins/chip8.c +++ b/apps/plugins/chip8.c | |||
@@ -1169,7 +1169,6 @@ static unsigned long cycles; /* Number of update cycles (50Hz) */ | |||
1169 | 1169 | ||
1170 | #ifndef SIMULATOR | 1170 | #ifndef SIMULATOR |
1171 | static bool is_playing; | 1171 | static bool is_playing; |
1172 | #endif | ||
1173 | 1172 | ||
1174 | /* one frame of bitswapped mp3 data */ | 1173 | /* one frame of bitswapped mp3 data */ |
1175 | static unsigned char beep[]={255, | 1174 | static unsigned char beep[]={255, |
@@ -1191,6 +1190,7 @@ static void callback(unsigned char** start, size_t* size) | |||
1191 | *start = beep; /* give it the same frame again */ | 1190 | *start = beep; /* give it the same frame again */ |
1192 | *size = sizeof(beep); | 1191 | *size = sizeof(beep); |
1193 | } | 1192 | } |
1193 | #endif /* !SIMULATOR */ | ||
1194 | 1194 | ||
1195 | /****************************************************************************/ | 1195 | /****************************************************************************/ |
1196 | /* Turn sound on */ | 1196 | /* Turn sound on */ |