diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-19 12:14:09 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-20 01:01:11 +0100 |
| commit | 425f9dcd5155614e66fab635819ef12ee390dc7b (patch) | |
| tree | 92697438fb6f154d4aa44bcfe0db041d56f835e3 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 592ebc5262f13bc587896e678d389fe831df9af7 (diff) | |
Fix more header sorting issues in VideoBackends/ (now check-includes clean).
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index efc4471d0e..b4a4cb2a2a 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -2,13 +2,8 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include "Common/Common.h" - -#if defined(HAVE_WX) && HAVE_WX -#include "VideoBackends/Software/VideoConfigDialog.h" -#endif // HAVE_WX - #include "Common/Atomic.h" +#include "Common/Common.h" #include "Common/FileUtil.h" #include "Common/LogManager.h" @@ -26,14 +21,18 @@ #include "VideoBackends/Software/OpcodeDecoder.h" #include "VideoBackends/Software/Rasterizer.h" #include "VideoBackends/Software/SWCommandProcessor.h" -#include "VideoBackends/Software/SWRenderer.h" #include "VideoBackends/Software/SWPixelEngine.h" +#include "VideoBackends/Software/SWRenderer.h" #include "VideoBackends/Software/SWStatistics.h" #include "VideoBackends/Software/SWVertexLoader.h" #include "VideoBackends/Software/SWVideoConfig.h" #include "VideoBackends/Software/VideoBackend.h" #include "VideoBackends/Software/XFMemLoader.h" +#if defined(HAVE_WX) && HAVE_WX +#include "VideoBackends/Software/VideoConfigDialog.h" +#endif // HAVE_WX + #include "VideoCommon/OnScreenDisplay.h" #define VSYNC_ENABLED 0 |
