From 5c249fae24c324656540121ec20f8e8e6eb20316 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 10 Mar 2026 05:15:55 +0000 Subject: [PATCH] fix windows msvc --- src/yuzu/startup_checks.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/yuzu/startup_checks.cpp b/src/yuzu/startup_checks.cpp index 9588441d78..f54992d19a 100644 --- a/src/yuzu/startup_checks.cpp +++ b/src/yuzu/startup_checks.cpp @@ -4,6 +4,8 @@ // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later +// Don't move this! put it below and MSVC will get angry! +#include "video_core/vulkan_common/vulkan_wrapper.h" #ifdef _WIN32 #include @@ -19,7 +21,6 @@ #endif #include -#include "video_core/vulkan_common/vulkan_wrapper.h" #include "video_core/vulkan_common/vulkan_instance.h" #include "video_core/vulkan_common/vulkan_library.h" #include "yuzu/startup_checks.h"