all repos — mgba @ 2de952c5212e83e1d3ef9f2c37435349d0706053

mGBA Game Boy Advance Emulator

Qt: Fix changing resolution of software renderer
Jeffrey Pfau jeffrey@endrift.com
Thu, 13 Oct 2016 14:01:48 -0700
commit

2de952c5212e83e1d3ef9f2c37435349d0706053

parent

124f9de7b7805431499b3e1993e07102182aeed2

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

jump to
M CHANGESCHANGES

@@ -5,6 +5,7 @@ - GBA BIOS: Fix MidiKey2Freq BIOS reads

- GBA BIOS: Fix invalid CpuSet not setting BIOS prefetch - GB MBC: Fix SRAM dangling pointer with RTC games - Windows: Fix Unicode directory handling + - Qt: Fix changing resolution of software renderer 0.5.1: (2016-10-05) Bugfixes:
M src/platform/qt/DisplayQt.cppsrc/platform/qt/DisplayQt.cpp

@@ -23,6 +23,7 @@ }

void DisplayQt::startDrawing(mCoreThread* context) { context->core->desiredVideoDimensions(context->core, &m_width, &m_height); + m_backing = std::move(QImage()); m_isDrawing = true; }