diff options
Diffstat (limited to 'apps/plugins/pacbox/pacbox.c')
| -rw-r--r-- | apps/plugins/pacbox/pacbox.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c index 76becd9..6c10a20 100644 --- a/apps/plugins/pacbox/pacbox.c +++ b/apps/plugins/pacbox/pacbox.c @@ -37,9 +37,6 @@ extern char iedata[]; extern char iend[]; #endif -/* How many video frames (out of a possible 60) we display each second */ -#define FPS 20 - struct plugin_api* rb; unsigned framesPerSecond = VideoFrequency; @@ -98,7 +95,6 @@ bool loadROMS( void ) } /* A buffer to render Pacman's 244x288 screen into */ -unsigned char background[ScreenWidth*ScreenHeight] __attribute__ ((aligned (4))); unsigned char video_buffer[ScreenWidth*ScreenHeight] __attribute__ ((aligned (4))); long start_time; @@ -316,13 +312,11 @@ int gameProc( void ) rb->lcd_update(); -#ifdef SIMULATOR /* Keep the framerate at Pacman's 60fps */ end_time = start_time + (video_frames*HZ)/FPS; while (TIME_BEFORE(*rb->current_tick,end_time)) { rb->sleep(1); } -#endif } return 0; |