diff options
author | Hop311 <Hop3114@gmail.com> | 2024-10-20 23:09:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-20 23:09:35 +0200 |
commit | 12bc584c7f6c6d559e01757ee05b7c07028337c8 (patch) | |
tree | 78c5cf07c7218db9a91849115b75250b5ac6d009 /extension/src/openvic-extension/singletons/LoadLocalisation.cpp | |
parent | 4c6e41074381ad5b61d64a796c242806cc61a18c (diff) | |
parent | 45d56aed583fd0db2f6201f9179f3919d2528d89 (diff) |
Merge pull request #280 from OpenVicProject/minor-format-fixes
Minor formatting changes (mostly whitespace cleanup)
Diffstat (limited to 'extension/src/openvic-extension/singletons/LoadLocalisation.cpp')
-rw-r--r-- | extension/src/openvic-extension/singletons/LoadLocalisation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/openvic-extension/singletons/LoadLocalisation.cpp b/extension/src/openvic-extension/singletons/LoadLocalisation.cpp index 55073d6..fbd618c 100644 --- a/extension/src/openvic-extension/singletons/LoadLocalisation.cpp +++ b/extension/src/openvic-extension/singletons/LoadLocalisation.cpp @@ -34,7 +34,7 @@ Error LoadLocalisation::_load_file(String const& file_path, Ref<Translation> con const Ref<FileAccess> file = FileAccess::open(file_path, FileAccess::ModeFlags::READ); Error err = FileAccess::get_open_error(); ERR_FAIL_COND_V_MSG( - err != OK || file.is_null(), err == OK ? FAILED : err, vformat("Failed to open localisation file: %s", file_path) + err != OK || file.is_null(), err == OK ? FAILED : err, vformat("Failed to open localisation file: %s", file_path) ); int line_number = 0; while (!file->eof_reached()) { |