all repos — mgba @ a16e3544682d69f5b3c82e079157eccc9337a7e6

mGBA Game Boy Advance Emulator

Qt: Fix showing default display driver as OpenGL (force 1.x)
Jeffrey Pfau jeffrey@endrift.com
Wed, 05 Oct 2016 10:16:32 -0700
commit

a16e3544682d69f5b3c82e079157eccc9337a7e6

parent

792eb2935478a508b131167c05e6d1823ce934eb

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -27,6 +27,7 @@ - GBA Memory: Fix several unused I/O register read values

- Qt: Fix patch loading - Qt: Fix crash when saving an override if a game isn't loaded - GB: Properly unload save files when unloading a ROM + - Qt: Fix showing default display driver as OpenGL (force 1.x) Misc: - All: Only update version info if needed - FFmpeg: Encoding cleanup
M src/platform/qt/SettingsView.cppsrc/platform/qt/SettingsView.cpp

@@ -124,7 +124,7 @@ #endif

#ifdef BUILD_GL m_ui.displayDriver->addItem(tr("OpenGL (force version 1.x)"), static_cast<int>(Display::Driver::OPENGL1)); - if (displayDriver.isNull() || displayDriver.toInt() == static_cast<int>(Display::Driver::OPENGL1)) { + if (!displayDriver.isNull() && displayDriver.toInt() == static_cast<int>(Display::Driver::OPENGL1)) { m_ui.displayDriver->setCurrentIndex(m_ui.displayDriver->count() - 1); } #endif