Unpause the emulator when resetting.

This commit is contained in:
Jay Elliott 2015-12-15 03:53:57 -08:00 committed by Jeffrey Pfau
parent d48a0241f3
commit b111f0eb5e
1 changed files with 1 additions and 0 deletions

View File

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