From 379f9feebd6d9375fdb0d8cc2b40f5229f55fe4a Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 10 May 2015 20:16:05 -0500 Subject: [PATCH] Fix non-PCH build. --- Source/Core/Common/ENetUtil.cpp | 2 ++ Source/Core/Core/ARDecrypt.cpp | 3 +++ Source/Core/Core/DSPEmulator.h | 2 ++ Source/Core/Core/HW/GPFifo.h | 1 + Source/Core/Core/HW/SI_DeviceAMBaseboard.cpp | 3 +++ Source/Core/Core/HW/SI_DeviceGCSteeringWheel.cpp | 3 +++ Source/Core/Core/PatchEngine.cpp | 1 + Source/Core/Core/State.cpp | 1 + 8 files changed, 16 insertions(+) diff --git a/Source/Core/Common/ENetUtil.cpp b/Source/Core/Common/ENetUtil.cpp index ae5b19b2c3..8cfb36e7e0 100644 --- a/Source/Core/Common/ENetUtil.cpp +++ b/Source/Core/Common/ENetUtil.cpp @@ -4,6 +4,8 @@ #include "ENetUtil.h" +#include "Common/CommonTypes.h" + namespace ENetUtil { diff --git a/Source/Core/Core/ARDecrypt.cpp b/Source/Core/Core/ARDecrypt.cpp index 2943eca8aa..4466f779a9 100644 --- a/Source/Core/Core/ARDecrypt.cpp +++ b/Source/Core/Core/ARDecrypt.cpp @@ -12,6 +12,9 @@ #include #endif +#include "Common/CommonFuncs.h" +#include "Common/CommonTypes.h" +#include "Common/MsgHandler.h" #include "Core/ARDecrypt.h" namespace ActionReplay diff --git a/Source/Core/Core/DSPEmulator.h b/Source/Core/Core/DSPEmulator.h index 374e8f26f7..6363a5ebd4 100644 --- a/Source/Core/Core/DSPEmulator.h +++ b/Source/Core/Core/DSPEmulator.h @@ -4,6 +4,8 @@ #pragma once +#include "Common/CommonTypes.h" + class PointerWrap; class DSPEmulator diff --git a/Source/Core/Core/HW/GPFifo.h b/Source/Core/Core/HW/GPFifo.h index 3937bf5c18..98206c51ed 100644 --- a/Source/Core/Core/HW/GPFifo.h +++ b/Source/Core/Core/HW/GPFifo.h @@ -4,6 +4,7 @@ #pragma once +#include "Common/Common.h" #include "Common/CommonTypes.h" class PointerWrap; diff --git a/Source/Core/Core/HW/SI_DeviceAMBaseboard.cpp b/Source/Core/Core/HW/SI_DeviceAMBaseboard.cpp index 8d20275531..59b0444f65 100644 --- a/Source/Core/Core/HW/SI_DeviceAMBaseboard.cpp +++ b/Source/Core/Core/HW/SI_DeviceAMBaseboard.cpp @@ -2,6 +2,9 @@ // Licensed under GPLv2 // Refer to the license.txt file included. +#include "Common/MsgHandler.h" +#include "Common/Logging/Log.h" + #include "Core/HW/GCPad.h" #include "Core/HW/SI.h" #include "Core/HW/SI_Device.h" diff --git a/Source/Core/Core/HW/SI_DeviceGCSteeringWheel.cpp b/Source/Core/Core/HW/SI_DeviceGCSteeringWheel.cpp index 0f55b1f1c1..19b8933346 100644 --- a/Source/Core/Core/HW/SI_DeviceGCSteeringWheel.cpp +++ b/Source/Core/Core/HW/SI_DeviceGCSteeringWheel.cpp @@ -2,6 +2,9 @@ // Licensed under GPLv2 // Refer to the license.txt file included. +#include "Common/MsgHandler.h" +#include "Common/Logging/Log.h" + #include "Core/HW/GCPad.h" #include "Core/HW/SI_DeviceGCSteeringWheel.h" diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index ee65ea2ca1..0e2b949e82 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -17,6 +17,7 @@ #include #include +#include #include #include diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 1ce1427c19..39a6c451e7 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -10,6 +10,7 @@ #include "Common/CommonTypes.h" #include "Common/Event.h" #include "Common/StringUtil.h" +#include "Common/Thread.h" #include "Common/Timer.h" #include "Core/ConfigManager.h"