summaryrefslogtreecommitdiffstats
path: root/src/game/client/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/main.cc')
-rw-r--r--src/game/client/main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/main.cc b/src/game/client/main.cc
index d9e915c..817e09a 100644
--- a/src/game/client/main.cc
+++ b/src/game/client/main.cc
@@ -406,7 +406,7 @@ int main(int argc, char** argv)
threading::update();
}
- client_game::deinit();
+ client_game::shutdown();
resource::hard_cleanup<BinFile>();
resource::hard_cleanup<Image>();
@@ -433,9 +433,9 @@ int main(int argc, char** argv)
globals::client_config.save_file("client.conf");
- threading::deinit();
+ threading::shutdown();
- shared_game::deinit();
+ shared_game::shutdown();
return EXIT_SUCCESS;
}