From ef80d51df176e0d103663bbc9a2ec5345926c178 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Thu, 28 Oct 2021 12:57:48 -0700 Subject: [PATCH] RenderWidget: Change "imgui.h" to This was originally intended to fix https://bugs.dolphin-emu.org/issues/12717 but this ended up not being the issue (instead it seems like files just weren't recompiled when imgui was updated due to MSVC weirdness). Still, using brackets instead of quotes is preferable as this is a library include. --- Source/Core/DolphinQt/RenderWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/RenderWidget.cpp b/Source/Core/DolphinQt/RenderWidget.cpp index 0343eda8fa..b62a097a2f 100644 --- a/Source/Core/DolphinQt/RenderWidget.cpp +++ b/Source/Core/DolphinQt/RenderWidget.cpp @@ -19,7 +19,7 @@ #include #include -#include "imgui.h" +#include #include "Core/Config/MainSettings.h" #include "Core/ConfigManager.h"