all repos — mgba @ 7073fa6a24ee44da81c42cd6bed3f902e3610af2

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

7073fa6a24ee44da81c42cd6bed3f902e3610af2

parent

5418f25d85f756b7d8028351b17ad7c7ee50a065

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

jump to
M CHANGESCHANGES

@@ -10,6 +10,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 Misc: - SDL: Remove scancode key input - GBA Video: Clean up unused timers
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; }