summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox')
-rw-r--r--apps/plugins/zxbox/spmain.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/apps/plugins/zxbox/spmain.c b/apps/plugins/zxbox/spmain.c
index 3f0bc9319e..ca0fa9bc71 100644
--- a/apps/plugins/zxbox/spmain.c
+++ b/apps/plugins/zxbox/spmain.c
@@ -237,8 +237,8 @@ static void select_keymap(void){
237/* options menu */ 237/* options menu */
238static void options_menu(void){ 238static void options_menu(void){
239 static const struct opt_items no_yes[2] = { 239 static const struct opt_items no_yes[2] = {
240 { "No", NULL }, 240 { "No", -1 },
241 { "Yes", NULL }, 241 { "Yes", -1 },
242 }; 242 };
243 int m; 243 int m;
244 int result; 244 int result;
@@ -255,16 +255,16 @@ static void options_menu(void){
255 { "Custom keymap", NULL }, 255 { "Custom keymap", NULL },
256 }; 256 };
257 static struct opt_items frameskip_items[] = { 257 static struct opt_items frameskip_items[] = {
258 { "0", NULL }, 258 { "0", -1 },
259 { "1", NULL }, 259 { "1", -1 },
260 { "2", NULL }, 260 { "2", -1 },
261 { "3", NULL }, 261 { "3", -1 },
262 { "4", NULL }, 262 { "4", -1 },
263 { "5", NULL }, 263 { "5", -1 },
264 { "6", NULL }, 264 { "6", -1 },
265 { "7", NULL }, 265 { "7", -1 },
266 { "8", NULL }, 266 { "8", -1 },
267 { "9", NULL }, 267 { "9", -1 },
268 }; 268 };
269 269
270 270