diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-05-17 22:03:51 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-17 22:03:51 +0000 |
commit | 7b3299d681db870194154a1e6e7a39583ffff563 (patch) | |
tree | 76054ee25faa511eeeabe7d481a1e39f5f297511 | |
parent | 66f183077d835b7d3bc2041fad89a65f04faacb9 (diff) |
A bit further cleanup in system-sdl.c.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26123 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/target/hosted/sdl/system-sdl.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/target/hosted/sdl/system-sdl.c b/firmware/target/hosted/sdl/system-sdl.c index 649d74d94a..9d529de37f 100644 --- a/firmware/target/hosted/sdl/system-sdl.c +++ b/firmware/target/hosted/sdl/system-sdl.c @@ -23,9 +23,8 @@ #include <SDL_thread.h> #include <stdlib.h> #include <string.h> -#include <setjmp.h> #include <inttypes.h> -#include "system-sdl.h" +#include "system.h" #include "thread-sdl.h" #include "sim-ui-defines.h" #include "lcd-sdl.h" @@ -168,7 +167,7 @@ void system_init(void) SDL_mutex *m; if (SDL_Init(SDL_INIT_TIMER)) panicf("%s", SDL_GetError()); - atexit(SDL_Quit); + atexit(sys_poweroff); c = SDL_CreateCond(); m = SDL_CreateMutex(); |