Merge pull request #7540 from zackhow/land

Android: don't try to pause emulation when not running
This commit is contained in:
Pierre Bourdon
2018-11-03 05:22:52 +01:00
committed by GitHub

View File

@ -146,7 +146,8 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
directoryStateReceiver = null; directoryStateReceiver = null;
} }
mEmulationState.pause(); if (mEmulationState.isRunning())
mEmulationState.pause();
super.onPause(); super.onPause();
} }