diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/codecs.c | 2 | ||||
| -rw-r--r-- | apps/main.c | 4 | ||||
| -rw-r--r-- | apps/misc.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index 88478e8..646d5f2 100644 --- a/apps/codecs.c +++ b/apps/codecs.c @@ -54,7 +54,7 @@ #define LOGF_ENABLE #include "logf.h" -#if (CONFIG_PLATFORM & PLATFORM_SDL) +#if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO)) #define PREFIX(_x_) sim_ ## _x_ #else #define PREFIX(_x_) _x_ diff --git a/apps/main.c b/apps/main.c index 6378833..3fc48be 100644 --- a/apps/main.c +++ b/apps/main.c @@ -125,7 +125,7 @@ #define MAIN_NORETURN_ATTR #endif -#if (CONFIG_PLATFORM & PLATFORM_SDL) +#if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO)) #include "sim_tasks.h" #include "system-sdl.h" #define HAVE_ARGV_MAIN @@ -351,7 +351,7 @@ static void init(void) show_logo(); button_init(); backlight_init(); -#if (CONFIG_PLATFORM & PLATFORM_SDL) +#if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO)) sim_tasks_init(); #endif #if (CONFIG_PLATFORM & PLATFORM_ANDROID) diff --git a/apps/misc.c b/apps/misc.c index 94b2de4..a08dac3 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -526,7 +526,7 @@ static void unplug_change(bool inserted) long default_event_handler_ex(long event, void (*callback)(void *), void *parameter) { -#if CONFIG_PLATFORM & PLATFORM_ANDROID +#if CONFIG_PLATFORM & (PLATFORM_ANDROID|PLATFORM_MAEMO) static bool resume = false; #endif @@ -619,7 +619,7 @@ long default_event_handler_ex(long event, void (*callback)(void *), void *parame iap_handlepkt(); return SYS_IAP_HANDLEPKT; #endif -#if CONFIG_PLATFORM & PLATFORM_ANDROID +#if CONFIG_PLATFORM & (PLATFORM_ANDROID|PLATFORM_MAEMO) /* stop playback if we receive a call */ case SYS_CALL_INCOMING: resume = audio_status() == AUDIO_STATUS_PLAY; |