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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c
index 44cc58c9d5..6e54669ef0 100644
--- a/apps/plugins/chip8.c
+++ b/apps/plugins/chip8.c
@@ -1295,7 +1295,7 @@ bool chip8_run(char* file)
1295 chip8(); 1295 chip8();
1296 1296
1297 if (!ok) { 1297 if (!ok) {
1298 rb->splash(HZ, true, "Error"); 1298 rb->splash(HZ, "Error");
1299 return false; 1299 return false;
1300 } 1300 }
1301 1301
@@ -1308,7 +1308,7 @@ bool chip8_run(char* file)
1308 1308
1309 if (chip8_running == 3) { 1309 if (chip8_running == 3) {
1310 /* unsupported instruction */ 1310 /* unsupported instruction */
1311 rb->splash(HZ, true, "Error: Unsupported" 1311 rb->splash(HZ, "Error: Unsupported"
1312#ifndef CHIP8_SUPER 1312#ifndef CHIP8_SUPER
1313 " CHIP-8 instruction. (maybe S-CHIP)" 1313 " CHIP-8 instruction. (maybe S-CHIP)"
1314#else 1314#else
@@ -1332,7 +1332,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
1332 1332
1333 if (parameter == NULL) 1333 if (parameter == NULL)
1334 { 1334 {
1335 rb->splash(HZ, true, "Play a .ch8 file!"); 1335 rb->splash(HZ, "Play a .ch8 file!");
1336 return PLUGIN_ERROR; 1336 return PLUGIN_ERROR;
1337 } 1337 }
1338 else 1338 else