浏览代码

Merge pull request #8442 from volzhs/error-load-icon-2.1

Fix error for loading icon image at start up
Rémi Verschelde 8 年之前
父节点
当前提交
6b0c384f79
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      main/main.cpp

+ 1 - 0
main/main.cpp

@@ -1404,6 +1404,7 @@ bool Main::start() {
 
 				String iconpath = GLOBAL_DEF("application/icon", "Variant()");
 				if (iconpath != "") {
+					iconpath = PathRemap::get_singleton()->get_remap(iconpath);
 					Image icon;
 					if (icon.load(iconpath) == OK)
 						OS::get_singleton()->set_icon(icon);