summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/lcd.c')
-rw-r--r--apps/plugins/rockboy/lcd.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/lcd.c b/apps/plugins/rockboy/lcd.c
index 22f8864889..2dc983f812 100644
--- a/apps/plugins/rockboy/lcd.c
+++ b/apps/plugins/rockboy/lcd.c
@@ -1108,8 +1108,13 @@ void lcd_refreshline(void)
1108 { 1108 {
1109 if(options.showstats) 1109 if(options.showstats)
1110 { 1110 {
1111 rb->lcd_putsxyf(0,LCD_HEIGHT-10,"FPS: %d Frameskip: %d ", 1111 if(options.showstats==1) {
1112 options.fps, options.frameskip); 1112 rb->lcd_putsxyf(0,LCD_HEIGHT-10," %d %d ",
1113 options.fps, options.frameskip);
1114 } else {
1115 rb->lcd_putsxyf(0,LCD_HEIGHT-10," FPS: %d Frameskip: %d ",
1116 options.fps, options.frameskip);
1117 }
1113 rb->lcd_update_rect(0,LCD_HEIGHT-10, LCD_WIDTH, 10); 1118 rb->lcd_update_rect(0,LCD_HEIGHT-10, LCD_WIDTH, 10);
1114 } 1119 }
1115 1120