diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-05-12 13:43:59 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-05-12 13:53:37 -0400 |
| commit | 1da2091801f80ba567908e7d3f08efcfec900bc8 (patch) | |
| tree | 7864679e8dc1cf30bc46cf0f594bfba876e0c3b4 /Source/Core/Common/SettingsHandler.cpp | |
| parent | 5677e5d74a21a59ee9978b81ff6f59eb74c64147 (diff) | |
SettingsHandler: Remove unnecessary includes
All Windows-specific includes aren't needed here anymore.
Diffstat (limited to 'Source/Core/Common/SettingsHandler.cpp')
| -rw-r--r-- | Source/Core/Common/SettingsHandler.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/Source/Core/Common/SettingsHandler.cpp b/Source/Core/Common/SettingsHandler.cpp index 42d24afe07..9a22a2e5d7 100644 --- a/Source/Core/Common/SettingsHandler.cpp +++ b/Source/Core/Common/SettingsHandler.cpp @@ -4,23 +4,15 @@ // Thanks to Treeki for writing the original class - 29/01/2012 +#include "Common/SettingsHandler.h" + #include <cstddef> -#include <cstdio> -#include <cstring> #include <ctime> #include <iomanip> #include <sstream> #include <string> -#ifdef _WIN32 -#include <windows.h> -#include <mmsystem.h> -#include <sys/timeb.h> -#endif - #include "Common/CommonTypes.h" -#include "Common/SettingsHandler.h" -#include "Common/Timer.h" namespace Common { |
