diff options
| author | JosJuice <josjuice@gmail.com> | 2021-12-12 15:14:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-12 15:14:28 +0100 |
| commit | f4e2d369c075f44f037289a1ccb78274c7d5cb39 (patch) | |
| tree | 9b89dd27ea346edb18349c7e68b3f498c178d64f /Source/Core/VideoBackends/Null/NullBackend.cpp | |
| parent | bfddce425dfb4767aefe00c9e4b49126a50d62b6 (diff) | |
| parent | 20257634209dba85d2cd51ad42e660090a5224e6 (diff) | |
Merge pull request #10270 from Pokechu22/header-order
Treewide: Adjust order of includes
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullBackend.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullBackend.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/VideoBackends/Null/NullBackend.cpp b/Source/Core/VideoBackends/Null/NullBackend.cpp index 78ce7f1afe..d6bd70c50a 100644 --- a/Source/Core/VideoBackends/Null/NullBackend.cpp +++ b/Source/Core/VideoBackends/Null/NullBackend.cpp @@ -6,15 +6,16 @@ // This backend tries not to do anything in the backend, // but everything in VideoCommon. -#include "VideoBackends/Null/NullRender.h" -#include "VideoBackends/Null/NullVertexManager.h" -#include "VideoBackends/Null/PerfQuery.h" -#include "VideoBackends/Null/TextureCache.h" #include "VideoBackends/Null/VideoBackend.h" #include "Common/Common.h" #include "Common/MsgHandler.h" +#include "VideoBackends/Null/NullRender.h" +#include "VideoBackends/Null/NullVertexManager.h" +#include "VideoBackends/Null/PerfQuery.h" +#include "VideoBackends/Null/TextureCache.h" + #include "VideoCommon/FramebufferManager.h" #include "VideoCommon/VideoBackendBase.h" #include "VideoCommon/VideoCommon.h" |
