summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorRafaël Kooi <48814281+RA-Kooi@users.noreply.github.com>2021-12-27 14:19:12 +0100
committerRafaël Kooi <48814281+RA-Kooi@users.noreply.github.com>2022-01-01 17:58:20 +0100
commitb756dc40bbdba8a599833163ff1f6b7b605ddcb9 (patch)
treef17cc33df10ee0f86be61f290bc6ef4fc877ab65 /Source/Core
parentdc7ea16705d35036617d69e874146530f8288ce8 (diff)
RenderWidget: Add include to Windows.h
Fixes errors when building with CMake. PCH support is currently broken, however the code shouldn't have a hard dependency on PCH anyway.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt/RenderWidget.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/RenderWidget.cpp b/Source/Core/DolphinQt/RenderWidget.cpp
index 68ff3c5a49..2430b7a415 100644
--- a/Source/Core/DolphinQt/RenderWidget.cpp
+++ b/Source/Core/DolphinQt/RenderWidget.cpp
@@ -36,8 +36,7 @@
#include "VideoCommon/VideoConfig.h"
#ifdef _WIN32
-#include <WinUser.h>
-#include <windef.h>
+#include <Windows.h>
#endif
RenderWidget::RenderWidget(QWidget* parent) : QWidget(parent)