From c59bfd2b7f4ce3bdf088c436fe17f349dbbc318c Mon Sep 17 00:00:00 2001 From: Rohit Nirmal Date: Tue, 26 May 2015 22:44:51 -0500 Subject: [PATCH] Fix building with PCH disabled. --- Source/Core/Core/CoreTiming.cpp | 1 + Source/Core/Core/FifoPlayer/FifoPlayer.cpp | 1 + Source/Core/Core/FifoPlayer/FifoRecorder.cpp | 1 + Source/Core/Core/GeckoCode.cpp | 1 + Source/Core/Core/HW/SI_DeviceGBA.cpp | 1 + Source/Core/Core/HW/SI_GCAdapter.cpp | 1 + Source/Core/Core/Movie.cpp | 1 + Source/Core/VideoBackends/Software/SWRenderer.cpp | 1 + 8 files changed, 8 insertions(+) diff --git a/Source/Core/Core/CoreTiming.cpp b/Source/Core/Core/CoreTiming.cpp index f87f9a9bacf..8b92f72f35f 100644 --- a/Source/Core/Core/CoreTiming.cpp +++ b/Source/Core/Core/CoreTiming.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include +#include #include #include diff --git a/Source/Core/Core/FifoPlayer/FifoPlayer.cpp b/Source/Core/Core/FifoPlayer/FifoPlayer.cpp index 02455f0a34f..668748b5d9e 100644 --- a/Source/Core/Core/FifoPlayer/FifoPlayer.cpp +++ b/Source/Core/Core/FifoPlayer/FifoPlayer.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include +#include #include "Common/CommonTypes.h" #include "Core/ConfigManager.h" diff --git a/Source/Core/Core/FifoPlayer/FifoRecorder.cpp b/Source/Core/Core/FifoPlayer/FifoRecorder.cpp index 01d3d082fb7..17d8e94e085 100644 --- a/Source/Core/Core/FifoPlayer/FifoRecorder.cpp +++ b/Source/Core/Core/FifoPlayer/FifoRecorder.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include +#include #include "Common/Thread.h" #include "Core/ConfigManager.h" diff --git a/Source/Core/Core/GeckoCode.cpp b/Source/Core/Core/GeckoCode.cpp index c55f13f50ff..1ea285d5e20 100644 --- a/Source/Core/Core/GeckoCode.cpp +++ b/Source/Core/Core/GeckoCode.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include #include #include "Common/CommonPaths.h" diff --git a/Source/Core/Core/HW/SI_DeviceGBA.cpp b/Source/Core/Core/HW/SI_DeviceGBA.cpp index 970ea72ad71..9850f2d0ede 100644 --- a/Source/Core/Core/HW/SI_DeviceGBA.cpp +++ b/Source/Core/Core/HW/SI_DeviceGBA.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include #include #include "Common/CommonFuncs.h" diff --git a/Source/Core/Core/HW/SI_GCAdapter.cpp b/Source/Core/Core/HW/SI_GCAdapter.cpp index e6b3807462e..7115dc3e406 100644 --- a/Source/Core/Core/HW/SI_GCAdapter.cpp +++ b/Source/Core/Core/HW/SI_GCAdapter.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include +#include #include "Common/Flag.h" #include "Common/Thread.h" diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index c2a143aff89..b59ff1d78aa 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include #include #include "Common/ChunkFile.h" diff --git a/Source/Core/VideoBackends/Software/SWRenderer.cpp b/Source/Core/VideoBackends/Software/SWRenderer.cpp index 7d27b31389b..761cc667df8 100644 --- a/Source/Core/VideoBackends/Software/SWRenderer.cpp +++ b/Source/Core/VideoBackends/Software/SWRenderer.cpp @@ -4,6 +4,7 @@ #include #include +#include #include #include "Common/CommonTypes.h"