summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2023-01-31 19:21:15 +1300
committerScott Mansell <phiren@gmail.com>2023-02-09 18:36:20 +1300
commitcf9a6f8477a8c0ebfcb344fb9f3af9b97569798b (patch)
tree3b14659570eff2fbf0b513e7e0c1dd4be2ac3bea /Source/Core/VideoCommon/VideoConfig.cpp
parentf7ad82573683376958bb39ada5d5a37cc98abffc (diff)
Lint fixes
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index 0c209a9686..dfbc0d3952 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -355,8 +355,5 @@ 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");