diff options
Diffstat (limited to 'apps/plugins/pacbox/pacbox.c')
| -rw-r--r-- | apps/plugins/pacbox/pacbox.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c index db25b1c..e942841 100644 --- a/apps/plugins/pacbox/pacbox.c +++ b/apps/plugins/pacbox/pacbox.c @@ -367,7 +367,6 @@ static void stop_sound(void) static int gameProc( void ) { int fps; - char str[80]; int status; long end_time; int frame_counter = 0; @@ -469,9 +468,7 @@ static int gameProc( void ) if (settings.showfps) { fps = (video_frames*HZ*100) / (*rb->current_tick-start_time); - rb->snprintf(str,sizeof(str),"%d.%02d / %d fps ", - fps/100,fps%100,FPS); - rb->lcd_putsxy(0,0,str); + rb->lcd_putsxyf(0,0,"%d.%02d / %d fps ",fps/100,fps%100,FPS); } #if !defined(HAVE_LCD_MODES) || \ |