diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2009-02-20 17:13:08 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2009-02-20 17:13:08 +0000 |
| commit | 3e67e3b1f06488f67d2ebbf844ff40893cc16bf0 (patch) | |
| tree | a066891b9a91f8eaf84b2eb0501ce0a09000b765 /apps | |
| parent | 2c3517d67a5387f422c7fcccf3c70f43a386b729 (diff) | |
| download | rockbox-3e67e3b1f06488f67d2ebbf844ff40893cc16bf0.zip rockbox-3e67e3b1f06488f67d2ebbf844ff40893cc16bf0.tar.gz rockbox-3e67e3b1f06488f67d2ebbf844ff40893cc16bf0.tar.bz2 rockbox-3e67e3b1f06488f67d2ebbf844ff40893cc16bf0.tar.xz | |
Add a rockbox kernel thread for simulator specific tasks, and use that for calling the screendump function(s). Fixes screendump in simulators for backlight-less targets (Ondio), and reduces mixing of unrelated functionality a bit (screendump was called from backlight thread, triggered by a sim-only system wide event).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20065 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 24a89ec..20cec9b 100644 --- a/apps/main.c +++ b/apps/main.c @@ -112,6 +112,7 @@ #include "cuesheet.h" #ifdef SIMULATOR +#include "sim_tasks.h" #include "system-sdl.h" #endif @@ -294,6 +295,7 @@ static void init(void) show_logo(); button_init(); backlight_init(); + sim_tasks_init(); lang_init(); #ifdef DEBUG debug_init(); |