diff options
| author | Scott Mansell <phiren@gmail.com> | 2023-01-31 19:21:15 +1300 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2023-02-09 18:36:20 +1300 |
| commit | cf9a6f8477a8c0ebfcb344fb9f3af9b97569798b (patch) | |
| tree | 3b14659570eff2fbf0b513e7e0c1dd4be2ac3bea /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | f7ad82573683376958bb39ada5d5a37cc98abffc (diff) | |
Lint fixes
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 7 |
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"); |
