diff options
| author | untodesu <kirill@untode.su> | 2025-06-29 23:15:00 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-06-29 23:15:00 +0500 |
| commit | d549135c8050b1a2ecc572bc7305b6769e9baebd (patch) | |
| tree | a545902465f6d5cdae6f2a8f4bef0535f3fdb65c /src/game/server/main.cc | |
| parent | e98d38816e0b4cd75265ec741b4dc4d8b144ed25 (diff) | |
| download | voxelius-d549135c8050b1a2ecc572bc7305b6769e9baebd.tar.bz2 voxelius-d549135c8050b1a2ecc572bc7305b6769e9baebd.zip | |
Sanity commit: replace deinit with shutdown
Diffstat (limited to 'src/game/server/main.cc')
| -rw-r--r-- | src/game/server/main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/server/main.cc b/src/game/server/main.cc index 734ae6a..535982a 100644 --- a/src/game/server/main.cc +++ b/src/game/server/main.cc @@ -84,12 +84,12 @@ int main(int argc, char** argv) threading::update(); } - server_game::deinit(); + server_game::shutdown(); resource::hard_cleanup<BinFile>(); resource::hard_cleanup<Image>(); - threading::deinit(); + threading::shutdown(); spdlog::info("server: shutdown after {} frames", globals::fixed_framecount); spdlog::info("server: average framerate: {:.03f} TPS", 1.0f / globals::fixed_frametime_avg); @@ -97,7 +97,7 @@ int main(int argc, char** argv) globals::server_config.save_file("server.conf"); - shared_game::deinit(); + shared_game::shutdown(); return EXIT_SUCCESS; } |
