diff options
| author | Juan Linietsky | 2017-12-14 15:33:54 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-12-14 15:34:47 -0300 |
| commit | 93a63a5e1adf1886ea37a8357442de7e2c80cd20 (patch) | |
| tree | ba99266b1a9af5d9a5dc0abbc27c5d7c9605e032 /main/main.cpp | |
| parent | fb84b49d87757226305cbaa96224e3fd84df5389 (diff) | |
| download | godot-93a63a5e1adf1886ea37a8357442de7e2c80cd20.tar.gz godot-93a63a5e1adf1886ea37a8357442de7e2c80cd20.tar.zst godot-93a63a5e1adf1886ea37a8357442de7e2c80cd20.zip | |
Diffstat (limited to 'main/main.cpp')
| -rw-r--r-- | main/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 132880712..c6e20f6d3 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1136,6 +1136,8 @@ Error Main::setup2(Thread::ID p_main_tid_override) { translation_server->load_translations(); ResourceLoader::load_translation_remaps(); //load remaps for resources + ResourceLoader::load_path_remaps(); + audio_server->load_default_bus_layout(); if (use_debug_profiler && script_debugger) { @@ -1816,6 +1818,9 @@ void Main::cleanup() { OS::get_singleton()->_execpath = ""; OS::get_singleton()->_local_clipboard = ""; + ResourceLoader::clear_translation_remaps(); + ResourceLoader::clear_path_remaps(); + ScriptServer::finish_languages(); #ifdef TOOLS_ENABLED |
