Fixed NullPointerException
parent
e5e5416975
commit
64c58b9f19
|
@ -1625,7 +1625,7 @@ class SDLMain implements Runnable {
|
||||||
|
|
||||||
Log.v("SDL", "Finished main function");
|
Log.v("SDL", "Finished main function");
|
||||||
|
|
||||||
if (SDLActivity.mSingleton.isFinishing()) {
|
if (SDLActivity.mSingleton == null || SDLActivity.mSingleton.isFinishing()) {
|
||||||
// Activity is already being destroyed
|
// Activity is already being destroyed
|
||||||
} else {
|
} else {
|
||||||
// Let's finish the Activity
|
// Let's finish the Activity
|
||||||
|
|
Loading…
Reference in New Issue