diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2016-12-23 15:54:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-23 15:54:01 +0100 |
commit | 36f03f9461a533aea8e51bda5f7d5788c2910997 (patch) | |
tree | d55ad572661dafd62a6f56e064ecbdce6ccb31ba | |
parent | 2b847d2a2e0a3ca73f7aa270c0b6d4284fe526af (diff) | |
parent | 474eafbbf68036251666cc1c4e86a82876b59e61 (diff) |
Merge pull request #7339 from bojidar-bg/po-import-failiure
Remove extraneous line in .po reader, which caused it to disregard first line
-rw-r--r-- | core/io/translation_loader_po.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/io/translation_loader_po.cpp b/core/io/translation_loader_po.cpp index a22c57b941..9b73785567 100644 --- a/core/io/translation_loader_po.cpp +++ b/core/io/translation_loader_po.cpp @@ -33,8 +33,6 @@ RES TranslationLoaderPO::load_translation(FileAccess *f, Error *r_error, const String &p_path) { - String l = f->get_line(); - enum Status { STATUS_NONE, |