Qt: Fix emulator crashing when full screen if a game is not running

This commit is contained in:
Jeffrey Pfau 2014-12-16 22:12:22 -08:00
parent d0604c35af
commit 0351d2e0ec
3 changed files with 11 additions and 1 deletions

View File

@ -3,6 +3,7 @@ Features:
- Support for gamepad axes, e.g. analog sticks or triggers
Bugfixes:
- Qt: Fix issue with set frame sizes being the wrong height
- Qt: Fix emulator crashing when full screen if a game is not running
0.1.0: (2014-12-13)
- Initial release

View File

@ -208,6 +208,9 @@ void GameController::closeGame() {
}
bool GameController::isPaused() {
if (!m_gameOpen) {
return false;
}
return GBAThreadIsPaused(&m_threadContext);
}

View File

@ -285,7 +285,7 @@ void Window::toggleFullScreen() {
} else {
showFullScreen();
#ifndef Q_OS_MAC
if (!m_controller->isPaused()) {
if (m_controller->isLoaded() && !m_controller->isPaused()) {
menuBar()->hide();
}
#endif
@ -303,6 +303,12 @@ void Window::gameStarted(GBAThread* context) {
attachWidget(m_display);
m_screenWidget->setScaledContents(true);
#ifndef Q_OS_MAC
if(isFullScreen()) {
menuBar()->hide();
}
#endif
m_fpsTimer.start();
}