Merge pull request #7540 from zackhow/land
Android: don't try to pause emulation when not running
This commit is contained in:
commit
0d00e6225b
|
@ -146,7 +146,8 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
|
|||
directoryStateReceiver = null;
|
||||
}
|
||||
|
||||
mEmulationState.pause();
|
||||
if (mEmulationState.isRunning())
|
||||
mEmulationState.pause();
|
||||
super.onPause();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue