From 66df4e13aeec8dc66ce97c81e2a858288727b7f5 Mon Sep 17 00:00:00 2001 From: cuesta4 Date: Sun, 7 Jun 2026 09:36:01 -0300 Subject: [PATCH] Fix linting: format SDL_RunOnMainThread call --- src/sdl_window.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/sdl_window.cpp b/src/sdl_window.cpp index 04ce55c0f..22e33ccef 100644 --- a/src/sdl_window.cpp +++ b/src/sdl_window.cpp @@ -325,10 +325,8 @@ void WindowSDL::RequestStartupSplashReveal() { return; } if (!SDL_RunOnMainThread( - [](void* userdata) { - static_cast(userdata)->RevealStartupSplash(); - }, - this, false)) { + [](void* userdata) { static_cast(userdata)->RevealStartupSplash(); }, this, + false)) { startup_splash_reveal_pending.store(true, std::memory_order_release); } }