Fixed crash if mSurface isn't set up when we pause the application
parent
81f7e0c1f7
commit
45536710f3
|
@ -354,7 +354,8 @@ public class SDLActivity extends Activity {
|
|||
// Try a transition to paused state
|
||||
if (mNextNativeState == NativeState.PAUSED) {
|
||||
nativePause();
|
||||
mSurface.handlePause();
|
||||
if (mSurface != null)
|
||||
mSurface.handlePause();
|
||||
mCurrentNativeState = mNextNativeState;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue