mirror of https://github.com/libsdl-org/SDL
Don't crash on exit from SDLActivity if we don't have a singleton for some reason. (Thanks Rachel!)
This commit is contained in:
parent
fe196db774
commit
63317dfb17
|
@ -427,7 +427,10 @@ public class SDLActivity extends Activity {
|
|||
/* The native thread has finished */
|
||||
public static void handleNativeExit() {
|
||||
SDLActivity.mSDLThread = null;
|
||||
mSingleton.finish();
|
||||
|
||||
// Make sure we currently have a singleton before we try to call it.
|
||||
if (mSingleton != null)
|
||||
mSingleton.finish();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue