diff --git a/src/duckstation-qt/gamelistmodel.cpp b/src/duckstation-qt/gamelistmodel.cpp index 76b8995cfa..96fcfef36e 100644 --- a/src/duckstation-qt/gamelistmodel.cpp +++ b/src/duckstation-qt/gamelistmodel.cpp @@ -51,7 +51,7 @@ static void resizeAndPadImage(QImage* image, int expected_width, int expected_he if (image->height() < dpr_expected_height) yoffs = static_cast(static_cast((dpr_expected_height - image->height()) / 2) / dpr); - QImage padded_image(dpr_expected_width, dpr_expected_height, image->format()); + QImage padded_image(dpr_expected_width, dpr_expected_height, QImage::Format_ARGB32); padded_image.setDevicePixelRatio(dpr); padded_image.fill(Qt::transparent); QPainter painter;