Index: apps/plugins/rockboy/lcd.c =================================================================== --- apps/plugins/rockboy/lcd.c (Revision 28597) +++ apps/plugins/rockboy/lcd.c (Arbeitskopie) @@ -1108,8 +1108,13 @@ { if(options.showstats) { - rb->lcd_putsxyf(0,LCD_HEIGHT-10,"FPS: %d Frameskip: %d ", - options.fps, options.frameskip); + if(options.showstats==1) { + rb->lcd_putsxyf(0,LCD_HEIGHT-10," %d %d ", + options.fps, options.frameskip); + } else { + rb->lcd_putsxyf(0,LCD_HEIGHT-10," FPS: %d Frameskip: %d ", + options.fps, options.frameskip); + } rb->lcd_update_rect(0,LCD_HEIGHT-10, LCD_WIDTH, 10); } Index: apps/plugins/rockboy/menu.c =================================================================== --- apps/plugins/rockboy/menu.c (Revision 28597) +++ apps/plugins/rockboy/menu.c (Arbeitskopie) @@ -344,6 +344,12 @@ { "On" , -1 }, }; + static const struct opt_items stats[3] = { + { "Off", -1 }, + { "Short" , -1 }, + { "Full" , -1 }, + }; + static const struct opt_items frameskip[]= { { "0 Max", -1 }, { "1 Max", -1 }, @@ -421,7 +427,7 @@ rb->option_screen((struct settings_list*)vol, parentvp, false, "Volume"); break; case 3: /* Stats */ - rb->set_option("Stats", &options.showstats, INT, onoff, 2, NULL ); + rb->set_option("Stats", &options.showstats, INT, stats, 3, NULL ); break; case 4: /* Keys */ setupkeys();