From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- game/client/gui/splash.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game/client/gui/splash.cc') diff --git a/game/client/gui/splash.cc b/game/client/gui/splash.cc index d6615ec..a144f97 100644 --- a/game/client/gui/splash.cc +++ b/game/client/gui/splash.cc @@ -61,7 +61,8 @@ void gui::client_splash::init(void) if(texture) { if(texture->size.x > texture->size.y) { texture_aspect = static_cast(texture->size.x) / static_cast(texture->size.y); - } else { + } + else { texture_aspect = static_cast(texture->size.y) / static_cast(texture->size.x); } -- cgit