Don't crash on exit from SDLActivity if we don't have a singleton for some reason. (Thanks Rachel!)

Sam Lantinga 2018-06-07 17:07:05 -07:00
parent fe196db774
commit 63317dfb17
1 changed files with 4 additions and 1 deletions

View File

@ -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();
}