From b8020cac2e7463d65185696955b469676c695a28 Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Sat, 31 Jan 2004 09:34:51 +0000 Subject: not for simulator unless lcd_blit() is implemented and mp3_xx() are stubbed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4289 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/chip8.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/plugins/chip8.c') diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c index c08079584e..533ef037e9 100644 --- a/apps/plugins/chip8.c +++ b/apps/plugins/chip8.c @@ -21,6 +21,7 @@ /* Only build for (correct) target */ #ifdef HAVE_LCD_BITMAP +#ifndef SIMULATOR /* not unless lcd_blit() is implemented and mp3_xx stubbed */ static struct plugin_api* rb; /* here is a global api struct pointer */ unsigned char lcd_framebuf[8][64]; /* frame buffer in hardware fomat */ @@ -599,4 +600,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) return chip8_run(filename) ? PLUGIN_OK : PLUGIN_ERROR; } +#endif /* #ifndef SIMULATOR */ #endif /* #ifdef HAVE_LCD_BITMAP */ -- cgit v1.2.3