Unpause the emulator when resetting.

This commit is contained in:
Jay Elliott 2015-12-15 03:53:57 -08:00
parent 6a4af38151
commit 5ff0411ba2
1 changed files with 1 additions and 0 deletions

View File

@ -474,6 +474,7 @@ void GameController::setPaused(bool paused) {
}
void GameController::reset() {
setPaused(false);
GBAThreadReset(&m_threadContext);
}