diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-06-21 16:53:00 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-06-21 16:53:00 +0000 |
| commit | 35e8b1429a2cdcf6580f6d25890fed9865165d0b (patch) | |
| tree | 084be19a29bffa879eee8e3cad92d8f3b342a337 /apps/plugins/chip8.c | |
| parent | 02e04585bdf1fbd00cf84d2000f59ec198440cb3 (diff) | |
| download | rockbox-35e8b1429a2cdcf6580f6d25890fed9865165d0b.zip rockbox-35e8b1429a2cdcf6580f6d25890fed9865165d0b.tar.gz rockbox-35e8b1429a2cdcf6580f6d25890fed9865165d0b.tar.bz2 rockbox-35e8b1429a2cdcf6580f6d25890fed9865165d0b.tar.xz | |
Rockbox as an application: Replace many occurences of #ifdef SIMULATOR with #if (CONFIG_PLATFORM & PLATFORM_HOSTED) (or equivalently).
The simulator defines PLATFORM_HOSTED, as RaaA will do (RaaA will not define SIMULATOR).
The new define is to (de-)select code to compile on hosted platforms generally.
Should be no functional change to targets or the simulator.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27019 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/chip8.c')
| -rw-r--r-- | apps/plugins/chip8.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c index be66d63..a1372cd 100644 --- a/apps/plugins/chip8.c +++ b/apps/plugins/chip8.c @@ -1185,7 +1185,7 @@ static byte chip8_keymap[16]; static unsigned long starttimer; /* Timer value at the beginning */ static unsigned long cycles; /* Number of update cycles (50Hz) */ -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) static bool is_playing; /* one frame of bitswapped mp3 data */ @@ -1208,14 +1208,14 @@ static void callback(unsigned char** start, size_t* size) *start = beep; /* give it the same frame again */ *size = sizeof(beep); } -#endif /* !SIMULATOR */ +#endif /* PLATFORM_NATIVE */ /****************************************************************************/ /* Turn sound on */ /****************************************************************************/ static void chip8_sound_on (void) { -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) if (!is_playing) rb->mp3_play_pause(true); /* kickoff audio */ #endif @@ -1226,7 +1226,7 @@ static void chip8_sound_on (void) /****************************************************************************/ static void chip8_sound_off (void) { -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) if (!is_playing) rb->mp3_play_pause(false); /* pause audio */ #endif @@ -1266,7 +1266,7 @@ static void chip8_update_display(void) *row++ = w; } } -#if defined(SIMULATOR) || (LCD_DEPTH > 1) +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || (LCD_DEPTH > 1) rb->lcd_set_drawmode(DRMODE_SOLID); rb->lcd_mono_bitmap(lcd_framebuf[0], CHIP8_X, CHIP8_Y, CHIP8_LCDWIDTH, CHIP8_HEIGHT); @@ -1428,7 +1428,7 @@ static bool chip8_run(const char* file) #endif rb->lcd_update(); -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) /* init sound */ is_playing = rb->mp3_is_playing(); /* would we disturb playback? */ if (!is_playing) /* no? then we can make sound */ @@ -1442,7 +1442,7 @@ static bool chip8_run(const char* file) cycles = 0; chip8(); -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) if (!is_playing) { /* stop it if we used audio */ rb->mp3_play_stop(); /* Stop audio playback */ |