Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9041 from shuffle2/no-pch
windows: fix build if pch were to be disabled
  • Loading branch information
lioncash committed Aug 22, 2020
2 parents 800b248 + cff4806 commit a9c8f54
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Core/Common/GL/GLContext.cpp
Expand Up @@ -9,7 +9,7 @@
#if defined(__APPLE__)
#include "Common/GL/GLInterface/AGL.h"
#endif
#if defined(WIN32)
#if defined(_WIN32)
#include "Common/GL/GLInterface/WGL.h"
#endif
#if HAVE_X11
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/MainWindow.cpp
Expand Up @@ -26,7 +26,7 @@
#include "QtUtils/SignalDaemon.h"
#endif

#ifndef WIN32
#ifndef _WIN32
#include <qpa/qplatformnativeinterface.h>
#endif

Expand Down
1 change: 1 addition & 0 deletions Source/Core/DolphinQt/MainWindow.h
Expand Up @@ -7,6 +7,7 @@
#include <QMainWindow>
#include <QStringList>

#include <array>
#include <memory>
#include <optional>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/Vulkan/VulkanLoader.h
Expand Up @@ -6,7 +6,7 @@

#define VK_NO_PROTOTYPES

#if defined(WIN32)
#if defined(_WIN32)
#define VK_USE_PLATFORM_WIN32_KHR
#endif

Expand Down

0 comments on commit a9c8f54

Please sign in to comment.