X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fcommon%2Fplat_sdl.c;h=d8935ac834ec2e3e52a2ece5f89be35d778a28d9;hb=504e2f5688f14a35bb6d7a080811889d465dbd75;hp=28b412d2b3d7ec5c080388eccd295baa1f3b3d7f;hpb=636d5f257c3e5bafba99ddbdc385a289e12c9deb;p=picodrive.git diff --git a/platform/common/plat_sdl.c b/platform/common/plat_sdl.c index 28b412d..d8935ac 100644 --- a/platform/common/plat_sdl.c +++ b/platform/common/plat_sdl.c @@ -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,6 +215,8 @@ void plat_init(void) if (ret != 0) exit(1); + plat_sdl_quit_cb = plat_sdl_quit; + SDL_WM_SetCaption("PicoDrive" VERSION, NULL); g_menuscreen_w = plat_sdl_screen->w;