summaryrefslogtreecommitdiff
path: root/apps/plugins/pacbox
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pacbox')
-rw-r--r--apps/plugins/pacbox/pacbox.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c
index db25b1c0f1..e942841a19 100644
--- a/apps/plugins/pacbox/pacbox.c
+++ b/apps/plugins/pacbox/pacbox.c
@@ -367,7 +367,6 @@ static void stop_sound(void)
367static int gameProc( void ) 367static int gameProc( void )
368{ 368{
369 int fps; 369 int fps;
370 char str[80];
371 int status; 370 int status;
372 long end_time; 371 long end_time;
373 int frame_counter = 0; 372 int frame_counter = 0;
@@ -469,9 +468,7 @@ static int gameProc( void )
469 468
470 if (settings.showfps) { 469 if (settings.showfps) {
471 fps = (video_frames*HZ*100) / (*rb->current_tick-start_time); 470 fps = (video_frames*HZ*100) / (*rb->current_tick-start_time);
472 rb->snprintf(str,sizeof(str),"%d.%02d / %d fps ", 471 rb->lcd_putsxyf(0,0,"%d.%02d / %d fps ",fps/100,fps%100,FPS);
473 fps/100,fps%100,FPS);
474 rb->lcd_putsxy(0,0,str);
475 } 472 }
476 473
477#if !defined(HAVE_LCD_MODES) || \ 474#if !defined(HAVE_LCD_MODES) || \