diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-06-05 19:29:54 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-06-25 22:11:42 -0400 |
| commit | ca5340ebde1c4204f7299daa815f50a05aa0c8dc (patch) | |
| tree | 68d7460a72f7c0d1993aea1f5de9f230822405db /Source/Core/VideoBackends | |
| parent | d0ad84f69bbf7b1f2caa7d6e09dfcc79aaba0c35 (diff) | |
Centralize the logging code into its own folder in Common.
Diffstat (limited to 'Source/Core/VideoBackends')
| -rw-r--r-- | Source/Core/VideoBackends/D3D/GfxState.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/D3D/main.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/OGL/main.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/D3D/GfxState.cpp b/Source/Core/VideoBackends/D3D/GfxState.cpp index 5b170d0b48..b14ecec8fc 100644 --- a/Source/Core/VideoBackends/D3D/GfxState.cpp +++ b/Source/Core/VideoBackends/D3D/GfxState.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include "Common/Log.h" +#include "Common/Logging/Log.h" #include "VideoBackends/D3D/D3DBase.h" #include "VideoBackends/D3D/GfxState.h" diff --git a/Source/Core/VideoBackends/D3D/main.cpp b/Source/Core/VideoBackends/D3D/main.cpp index 6e6505ffea..be2173cdcf 100644 --- a/Source/Core/VideoBackends/D3D/main.cpp +++ b/Source/Core/VideoBackends/D3D/main.cpp @@ -7,8 +7,8 @@ #include "Common/FileUtil.h" #include "Common/IniFile.h" -#include "Common/LogManager.h" #include "Common/StringUtil.h" +#include "Common/Logging/LogManager.h" #include "Core/ConfigManager.h" #include "Core/Core.h" diff --git a/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp b/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp index 77de170411..d7ba6292c9 100644 --- a/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp +++ b/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp @@ -5,7 +5,7 @@ #include <sstream> #include <unordered_map> -#include "Common/Log.h" +#include "Common/Logging/Log.h" #include "VideoBackends/OGL/GLExtensions/GLExtensions.h" #if defined(__linux__) || defined(__APPLE__) diff --git a/Source/Core/VideoBackends/OGL/main.cpp b/Source/Core/VideoBackends/OGL/main.cpp index aa31573054..c4db8d94e9 100644 --- a/Source/Core/VideoBackends/OGL/main.cpp +++ b/Source/Core/VideoBackends/OGL/main.cpp @@ -41,8 +41,8 @@ Make AA apply instantly during gameplay if possible #include "Common/Atomic.h" #include "Common/CommonPaths.h" -#include "Common/LogManager.h" #include "Common/Thread.h" +#include "Common/Logging/LogManager.h" #include "Core/ConfigManager.h" #include "Core/Core.h" diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 08c955abdb..6fe4cf4dcb 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -7,8 +7,8 @@ #include "Common/Atomic.h" #include "Common/Common.h" #include "Common/FileUtil.h" -#include "Common/LogManager.h" #include "Common/StringUtil.h" +#include "Common/Logging/LogManager.h" #include "Core/ConfigManager.h" #include "Core/Core.h" |
