From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- game/client/window_title.cc | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 game/client/window_title.cc (limited to 'game/client/window_title.cc') diff --git a/game/client/window_title.cc b/game/client/window_title.cc deleted file mode 100644 index 517429d..0000000 --- a/game/client/window_title.cc +++ /dev/null @@ -1,22 +0,0 @@ -#include "client/pch.hh" - -#include "client/window_title.hh" - -#include "core/version.hh" - -#include "shared/splash.hh" - -#include "client/globals.hh" - -void window_title::update(void) -{ - std::string title; - - if(globals::sound_ctx && globals::sound_dev) { - title = std::format("Voxelius {}: {}", project_version_string, splash::get()); - } else { - title = std::format("Voxelius {}: {} [NOSOUND]", project_version_string, splash::get()); - } - - glfwSetWindowTitle(globals::window, title.c_str()); -} -- cgit