notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53b2e51
)
plat_sdl: handle exit in some way
author
notaz
<notasas@gmail.com>
Sat, 29 Jun 2013 20:01:07 +0000
(23:01 +0300)
committer
notaz
<notasas@gmail.com>
Sat, 29 Jun 2013 20:01:07 +0000
(23:01 +0300)
platform/common/plat_sdl.c
patch
|
blob
|
blame
|
history
diff --git
a/platform/common/plat_sdl.c
b/platform/common/plat_sdl.c
index
28b412d
..
d8935ac
100644
(file)
--- 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;