From 85bef5b8cb15b5768d2f388f6a80ae37921a454f Mon Sep 17 00:00:00 2001 From: pelya Date: Tue, 12 Nov 2013 01:38:41 +0200 Subject: [PATCH] Disabled SDL_Quit(), it's buggy --- hw/kdrive/sdl/sdl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/kdrive/sdl/sdl.c b/hw/kdrive/sdl/sdl.c index 71a703cb2..6bf0cc472 100644 --- a/hw/kdrive/sdl/sdl.c +++ b/hw/kdrive/sdl/sdl.c @@ -388,9 +388,9 @@ void sdlPollInput(void) pressure = event.jaxis.value; break; - case SDL_QUIT: + //case SDL_QUIT: /* this should never happen */ - SDL_Quit(); + //SDL_Quit(); // SDL_Quit() on Android is buggy } } /* @@ -414,7 +414,7 @@ static int xsdlInit(void) static void xsdlFini(void) { - SDL_Quit(); + //SDL_Quit(); // SDL_Quit() on Android is buggy } void