all repos — mgba @ 30db4ebee83ce904689e66543078abff5e1e4205

mGBA Game Boy Advance Emulator

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
commit

30db4ebee83ce904689e66543078abff5e1e4205

parent

a5852c6e126d82915fb5da23d8d3c347ec9755d2

2 files changed, 4 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -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.cppsrc/platform/qt/Window.cpp

@@ -560,6 +560,9 @@ if (m_fullscreenOnStart) {

enterFullScreen(); m_fullscreenOnStart = false; } + if (m_display) { + reloadDisplayDriver(); + } } void Window::closeEvent(QCloseEvent* event) {