diff options
author | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2017-12-19 10:36:03 +0000 |
---|---|---|
committer | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2017-12-19 11:02:25 +0000 |
commit | 8981924fbe00f80582ccec830b040428016eedfd (patch) | |
tree | 6f8c71f7449c896e2dc714683b95710e025eceae /scene | |
parent | b068961c8fe51daa388cfd14021712b00fd9aec7 (diff) |
fix for BitmapFont::create_from_fnt to allow loading from file in
project root directory.
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/font.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/font.cpp b/scene/resources/font.cpp index 2b44ea4554..8510669d6c 100644 --- a/scene/resources/font.cpp +++ b/scene/resources/font.cpp @@ -257,8 +257,8 @@ Error BitmapFont::create_from_fnt(const String &p_file) { if (keys.has("file")) { - String file = keys["file"]; - file = p_file.get_base_dir() + "/" + file; + String base_dir = p_file.get_base_dir(); + String file = base_dir.plus_file(keys["file"]); Ref<Texture> tex = ResourceLoader::load(file); if (tex.is_null()) { ERR_PRINT("Can't load font texture!"); |