support mp3 decoding over libavcodec
[picodrive.git] / platform / common / plat_sdl.c
index 28b412d..8ea266f 100644 (file)
@@ -200,6 +200,12 @@ void plat_early_init(void)
 {
 }
 
+static void plat_sdl_quit(void)
+{
+       // for now..
+       exit(1);
+}
+
 void plat_init(void)
 {
        int shadow_size;
@@ -209,7 +215,9 @@ void plat_init(void)
        if (ret != 0)
                exit(1);
 
-       SDL_WM_SetCaption("PicoDrive" VERSION, NULL);
+       plat_sdl_quit_cb = plat_sdl_quit;
+
+       SDL_WM_SetCaption("PicoDrive " VERSION, NULL);
 
        g_menuscreen_w = plat_sdl_screen->w;
        g_menuscreen_h = plat_sdl_screen->h;