diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-13 17:17:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-13 17:17:27 +0200 |
| commit | 4391b67e16b47b1be8eda69519a88546438dce8c (patch) | |
| tree | 9c1e8b632232e890d8cd1b4be7423d3a0bf12bca /main | |
| parent | 3bea3256f5def126b2b6d639ed70c4ddc3990344 (diff) | |
| parent | 9b9a723c771a0146cb16e23c3dac744af312bad7 (diff) | |
| download | redot-engine-4391b67e16b47b1be8eda69519a88546438dce8c.tar.gz | |
Merge pull request #10257 from Faless/html5_fixes
Fix for WebGL2 and HTML5 export
Diffstat (limited to 'main')
| -rw-r--r-- | main/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index f23da57185..561201ab8a 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1466,6 +1466,7 @@ bool Main::start() { String iconpath = GLOBAL_DEF("application/config/icon", "Variant()"); if (iconpath != "") { Ref<Image> icon; + icon.instance(); if (icon->load(iconpath) == OK) OS::get_singleton()->set_icon(icon); } |
