summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2023-01-31 17:29:16 +1300
committerScott Mansell <phiren@gmail.com>2023-02-09 18:36:20 +1300
commit31cfe8250d5a27bd586136d0b71b09736861ad7d (patch)
tree170644a7c52c618e488e2226768d23eb0e52482e /Source/Core/VideoCommon/VideoConfig.cpp
parent11de923dcb7e6a7e1b29e5b15cb2bf71ede22b97 (diff)
Lint fixes
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index 21f006af4a..0c209a9686 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -24,8 +24,8 @@
#include "VideoCommon/GraphicsModSystem/Config/GraphicsMod.h"
#include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.h"
#include "VideoCommon/OnScreenDisplay.h"
-#include "VideoCommon/Present.h"
#include "VideoCommon/PixelShaderManager.h"
+#include "VideoCommon/Present.h"
#include "VideoCommon/ShaderGenCommon.h"
#include "VideoCommon/TextureCacheBase.h"
#include "VideoCommon/VertexManagerBase.h"
@@ -355,7 +355,8 @@ void CheckForConfigChanges()
// TODO: Move everything else to the ConfigChanged event
}
-static EventHook s_check_config_event = AfterFrameEvent::Register([] {
- CheckForConfigChanges();
-
-}, "CheckForConfigChanges");
+static EventHook s_check_config_event = AfterFrameEvent::Register(
+ [] {
+ CheckForConfigChanges();
+ },
+ "CheckForConfigChanges");