diff options
author | Juan Linietsky <reduzio@gmail.com> | 2020-04-20 22:03:11 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 22:03:11 -0300 |
commit | 40b2aea222807ab50a31c7ca718bfca76080caa0 (patch) | |
tree | 94c9b2cc850eb2fb0608a52c05fb389e1cd35234 /core/io/translation_loader_po.cpp | |
parent | 6d8e1aea892dc80e2fb01729b9a532a447f0760d (diff) | |
parent | ae09b55a19c956cf6dafd446c71178f6bbffd91d (diff) |
Merge pull request #38032 from reduz/rendering-device-binds
Exposed RenderingDevice to script API
Diffstat (limited to 'core/io/translation_loader_po.cpp')
-rw-r--r-- | core/io/translation_loader_po.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/translation_loader_po.cpp b/core/io/translation_loader_po.cpp index 5da236d029..bce5361c76 100644 --- a/core/io/translation_loader_po.cpp +++ b/core/io/translation_loader_po.cpp @@ -185,7 +185,7 @@ RES TranslationLoaderPO::load_translation(FileAccess *f, Error *r_error) { return translation; } -RES TranslationLoaderPO::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress) { +RES TranslationLoaderPO::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, bool p_no_cache) { if (r_error) *r_error = ERR_CANT_OPEN; |