From d0fbd68055e3f4a796330cc8acc6c0954b5327ff Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 15:48:53 +0500 Subject: Run clang-format across the project --- game/client/gui/window_title.cc | 46 ++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'game/client/gui/window_title.cc') diff --git a/game/client/gui/window_title.cc b/game/client/gui/window_title.cc index 6f46668..6e2387c 100644 --- a/game/client/gui/window_title.cc +++ b/game/client/gui/window_title.cc @@ -1,23 +1,23 @@ -#include "client/pch.hh" - -#include "client/gui/window_title.hh" - -#include "core/version.hh" - -#include "shared/splash.hh" - -#include "client/globals.hh" - -void gui::window_title::update(void) -{ - std::string title; - - if(globals::sound_ctx && globals::sound_dev) { - title = std::format("Voxelius {}: {}", version::semver, splash::get()); - } - else { - title = std::format("Voxelius {}: {} [NOSOUND]", version::semver, splash::get()); - } - - glfwSetWindowTitle(globals::window, title.c_str()); -} +#include "client/pch.hh" + +#include "client/gui/window_title.hh" + +#include "core/version.hh" + +#include "shared/splash.hh" + +#include "client/globals.hh" + +void gui::window_title::update(void) +{ + std::string title; + + if(globals::sound_ctx && globals::sound_dev) { + title = std::format("Voxelius {}: {}", version::semver, splash::get()); + } + else { + title = std::format("Voxelius {}: {} [NOSOUND]", version::semver, splash::get()); + } + + glfwSetWindowTitle(globals::window, title.c_str()); +} -- cgit