Qt: Fix changing resolution of software renderer
Jeffrey Pfau jeffrey@endrift.com
Thu, 13 Oct 2016 14:01:48 -0700
2 files changed,
2 insertions(+),
0 deletions(-)
M
CHANGES
→
CHANGES
@@ -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.cpp
→
src/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; }