Qt: Fix jumbled background when paused

This commit is contained in:
Vicki Pfau 2018-09-30 13:34:26 -07:00
parent 426993bbbb
commit b192330166
2 changed files with 2 additions and 1 deletions

View File

@ -111,6 +111,7 @@ Bugfixes:
- Wii: Fix drawing caching regression (fixes mgba.io/i/1185)
- Switch: Fix incorrect mapping for fast forward cap
- GB, GBA: Fix broken opposing button filter (fixes mgba.io/i/1191)
- Qt: Fix jumbled background when paused
Misc:
- mGUI: Add SGB border configuration option
- mGUI: Add support for different settings types

View File

@ -1820,7 +1820,7 @@ void Window::focusCheck() {
void Window::updateFrame() {
QSize size = m_controller->screenDimensions();
QImage currentImage(reinterpret_cast<const uchar*>(m_controller->drawContext()), size.width(), size.height(),
256 * BYTES_PER_PIXEL, QImage::Format_RGBX8888);
size.width() * BYTES_PER_PIXEL, QImage::Format_RGBX8888);
QPixmap pixmap;
pixmap.convertFromImage(currentImage);
m_screenWidget->setPixmap(pixmap);