summaryrefslogtreecommitdiff
path: root/apps/plugins/chip8.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/chip8.c')
-rw-r--r--apps/plugins/chip8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c
index 0e1b9c5213..b2faed5d80 100644
--- a/apps/plugins/chip8.c
+++ b/apps/plugins/chip8.c
@@ -1268,7 +1268,7 @@ static unsigned char beep[]={255,
1268111,181,184,144, 17,148, 21,101,166,227,100, 86, 85, 85, 85}; 1268111,181,184,144, 17,148, 21,101,166,227,100, 86, 85, 85, 85};
1269 1269
1270/* callback to request more mp3 data */ 1270/* callback to request more mp3 data */
1271static void callback(unsigned char** start, size_t* size) 1271static void callback(const void** start, size_t* size)
1272{ 1272{
1273 *start = beep; /* give it the same frame again */ 1273 *start = beep; /* give it the same frame again */
1274 *size = sizeof(beep); 1274 *size = sizeof(beep);