Qt: Fix GL display when loading a game from CLI (fixes #843)
Vicki Pfau vi@endrift.com
Fri, 04 Aug 2017 10:35:09 -0700
2 files changed,
4 insertions(+),
0 deletions(-)
M
CHANGES
→
CHANGES
@@ -24,6 +24,7 @@ - GB, GBA: Fix crashes when attempting to identify null VFiles
- GB MBC: Fix RTC initialization (fixes mgba.io/i/825) - GB MBC: Fix RTC loading when file size is off - GB Serialize: Fix deserializing video STAT + - Qt: Fix GL display when loading a game from CLI (fixes mgba.io/i/843) Misc: - GBA Timer: Use global cycles for timers - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
M
src/platform/qt/Window.cpp
→
src/platform/qt/Window.cpp
@@ -560,6 +560,9 @@ if (m_fullscreenOnStart) {
enterFullScreen(); m_fullscreenOnStart = false; } + if (m_display) { + reloadDisplayDriver(); + } } void Window::closeEvent(QCloseEvent* event) {