diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-04-14 18:31:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 18:31:58 +0200 |
commit | 436b038c1806e326ff6458f1692e9009d3a54346 (patch) | |
tree | b5a33a733398b511eb0aa7781860c8accbadd2a0 /extension/src/LoadLocalisation.cpp | |
parent | 1f04a7827ae377372cb491ff0257a47d0d4c2967 (diff) | |
parent | 7241811bd8c9493b7b6c6480e8d63a5fb7f38e4e (diff) |
Merge pull request #84 from OpenVic2Project/terrain-map
Diffstat (limited to 'extension/src/LoadLocalisation.cpp')
-rw-r--r-- | extension/src/LoadLocalisation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extension/src/LoadLocalisation.cpp b/extension/src/LoadLocalisation.cpp index c95c08b..8698bb2 100644 --- a/extension/src/LoadLocalisation.cpp +++ b/extension/src/LoadLocalisation.cpp @@ -8,7 +8,7 @@ using namespace godot; using namespace OpenVic2; -LoadLocalisation *LoadLocalisation::singleton = nullptr; +LoadLocalisation* LoadLocalisation::singleton = nullptr; void LoadLocalisation::_bind_methods() { ClassDB::bind_method(D_METHOD("load_file", "file_path", "locale"), &LoadLocalisation::load_file); @@ -16,7 +16,7 @@ void LoadLocalisation::_bind_methods() { ClassDB::bind_method(D_METHOD("load_localisation_dir", "dir_path"), &LoadLocalisation::load_localisation_dir); } -LoadLocalisation *LoadLocalisation::get_singleton() { +LoadLocalisation* LoadLocalisation::get_singleton() { return singleton; } @@ -54,7 +54,7 @@ Error LoadLocalisation::_load_file_into_translation(String const& file_path, Ref } Ref<Translation> LoadLocalisation::_get_translation(String const& locale) { - TranslationServer *server = TranslationServer::get_singleton(); + TranslationServer* server = TranslationServer::get_singleton(); Ref<Translation> translation = server->get_translation_object(locale); if (translation.is_null() || translation->get_locale() != locale) { translation.instantiate(); @@ -93,7 +93,7 @@ Error LoadLocalisation::load_locale_dir(String const& dir_path, String const& lo */ Error LoadLocalisation::load_localisation_dir(String const& dir_path) { if (DirAccess::dir_exists_absolute(dir_path)) { - TranslationServer *server = TranslationServer::get_singleton(); + TranslationServer* server = TranslationServer::get_singleton(); Error err = OK; for (String const& locale_name : DirAccess::get_directories_at(dir_path)) { if (locale_name == server->standardize_locale(locale_name)) { |