summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/menu.c')
-rw-r--r--apps/plugins/rockboy/menu.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/apps/plugins/rockboy/menu.c b/apps/plugins/rockboy/menu.c
index aa79b5db4b..c87799496a 100644
--- a/apps/plugins/rockboy/menu.c
+++ b/apps/plugins/rockboy/menu.c
@@ -322,29 +322,29 @@ static void do_opt_menu(void)
322 int result; 322 int result;
323 323
324 static const struct opt_items onoff[2] = { 324 static const struct opt_items onoff[2] = {
325 { "Off", NULL }, 325 { "Off", 0 },
326 { "On" , NULL }, 326 { "On" , 0 },
327 }; 327 };
328 328
329 static const struct opt_items fullscreen[]= { 329 static const struct opt_items fullscreen[]= {
330 { "Off", NULL }, 330 { "Off", 0 },
331 { "Fullscreen", NULL }, 331 { "Fullscreen", 0 },
332 { "Full - Maintain Ratio", NULL }, 332 { "Full - Maintain Ratio", 0 },
333 }; 333 };
334 334
335 static const struct opt_items frameskip[]= { 335 static const struct opt_items frameskip[]= {
336 { "3 Max", NULL }, 336 { "3 Max", 0 },
337 { "4 Max", NULL }, 337 { "4 Max", 0 },
338 { "5 Max", NULL }, 338 { "5 Max", 0 },
339 { "6 Max", NULL }, 339 { "6 Max", 0 },
340 }; 340 };
341 341
342 static const struct menu_item items[] = { 342 static const struct menu_item items[] = {
343 {"Max Frameskip", NULL }, 343 {"Max Frameskip", 0 },
344 {"Sound" , NULL }, 344 {"Sound" , 0 },
345 {"Stats" , NULL }, 345 {"Stats" , 0 },
346 {"Fullscreen" , NULL }, 346 {"Fullscreen" , 0 },
347 {"Set Keys (Buggy)", NULL }, 347 {"Set Keys (Buggy)", 0 },
348 }; 348 };
349 349
350 m = rb->menu_init(items, sizeof(items) / sizeof(*items), NULL, NULL, NULL, NULL); 350 m = rb->menu_init(items, sizeof(items) / sizeof(*items), NULL, NULL, NULL, NULL);