diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-23 10:14:42 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-23 10:14:42 -0700 |
commit | d01e4caa1ebcc44f1d9a13cdcbf4448d824ec26f (patch) | |
tree | 74b440533c3d2784aed44841f93fefd4c2d3a699 | |
parent | 785f61c1795649de42561dd60cb4e81c06cccb04 (diff) |
remove old call to Runtime.warn in file packager code
-rw-r--r-- | tools/file_packager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/file_packager.py b/tools/file_packager.py index 8efa85f4..a2349a57 100644 --- a/tools/file_packager.py +++ b/tools/file_packager.py @@ -359,7 +359,7 @@ if has_preloaded: if (that.audio) { Module['removeRunDependency']('fp ' + that.name); // workaround for chromium bug 124926 (still no audio with this, but at least we don't hang) } else { - Runtime.warn('Preloading file ' + that.name + ' failed'); + Module.printErr('Preloading file ' + that.name + ' failed'); } }, false, true); // canOwn this data in the filesystem, it is a slide into the heap that will never change this.requests[this.name] = null; |