From 774365d08a0289bb84ba4a0062137ccdf13f78cb Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Fri, 23 Jan 2026 21:07:47 +0600 Subject: [PATCH] Vulkan: Always do RGB correction on Windows --- src/qt/qt_vulkanwindowrenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_vulkanwindowrenderer.cpp b/src/qt/qt_vulkanwindowrenderer.cpp index 52d42ebf4..41f913a87 100644 --- a/src/qt/qt_vulkanwindowrenderer.cpp +++ b/src/qt/qt_vulkanwindowrenderer.cpp @@ -900,7 +900,7 @@ VulkanWindowRenderer::onBlit(int buf_idx, int x, int y, int w, int h) strcat(path, fn); QImage image = this->grab(); -#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) +#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) && !defined(Q_OS_WINDOWS) image.save(path, "png"); #else image.rgbSwapped().save(path, "png");