Skip to content

Commit

Permalink
Merge pull request #7540 from zackhow/land
Browse files Browse the repository at this point in the history
Android: don't try to pause emulation when not running
  • Loading branch information
delroth committed Nov 3, 2018
2 parents 6509616 + 50da284 commit 0d00e62
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -146,7 +146,8 @@ public void onPause()
directoryStateReceiver = null;
}

mEmulationState.pause();
if (mEmulationState.isRunning())
mEmulationState.pause();
super.onPause();
}

Expand Down

0 comments on commit 0d00e62

Please sign in to comment.