summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2012-03-20 21:26:37 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2012-03-20 21:26:37 +1100
commit287bf712474494590013b4055cb1e8b6cd45e661 (patch)
tree06461d143f924de2bc08e33ef59a576ae24be802 /firmware
parentbb6ac6fcbaabe25f64e5fe80e78cf4d6e201626d (diff)
sdl: Fix the sdl init so the sim will get a taskbar item
Change-Id: Ib0049f96c54b4471a8185937d92bb6e8a492142a
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/hosted/sdl/system-sdl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/hosted/sdl/system-sdl.c b/firmware/target/hosted/sdl/system-sdl.c
index 87b2e0ccd1..a57e704246 100644
--- a/firmware/target/hosted/sdl/system-sdl.c
+++ b/firmware/target/hosted/sdl/system-sdl.c
@@ -133,6 +133,8 @@ static int sdl_event_thread(void * param)
flags |= SDL_FULLSCREEN;
#endif
+ SDL_WM_SetCaption(UI_TITLE, NULL);
+
if ((gui_surface = SDL_SetVideoMode(width * display_zoom, height * display_zoom, depth, flags)) == NULL) {
panicf("%s", SDL_GetError());
}
@@ -149,8 +151,6 @@ static int sdl_event_thread(void * param)
SDL_SetCursor(hiddenCursor);
#endif
- SDL_WM_SetCaption(UI_TITLE, NULL);
-
if (background && picture_surface != NULL)
SDL_BlitSurface(picture_surface, NULL, gui_surface, NULL);