diff options
| author | untodesu <kirill@untode.su> | 2025-09-11 13:48:31 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-09-11 13:48:31 +0500 |
| commit | aaed751bf4430bf4b9b30cef532b8753b9f639ce (patch) | |
| tree | 16bc751c272ba27ad53ec48dbdd3a6d9e6a8d4c2 /game/server/main.cc | |
| parent | 96bd73ae020ecca1f94698744c77498a89ad19f7 (diff) | |
| download | voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.tar.bz2 voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.zip | |
Replace most of C strings with string_view
Diffstat (limited to 'game/server/main.cc')
| -rw-r--r-- | game/server/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/server/main.cc b/game/server/main.cc index fd940e2..deb0f97 100644 --- a/game/server/main.cc +++ b/game/server/main.cc @@ -32,7 +32,7 @@ int main(int argc, char** argv) shared_game::init(argc, argv); - spdlog::info("Voxelius Server {}", project_version_string); + spdlog::info("Voxelius Server {}", version::semver); globals::fixed_frametime = 0.0f; globals::fixed_frametime_avg = 0.0f; |
