Execute only builtin.abc, just load playerGlobal.abc.

This commit is contained in:
Tobias Schneider 2012-04-19 00:07:50 +02:00
Родитель 2efd1387d0
Коммит 0b608a4adf
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -59,7 +59,7 @@
abcFiles[i] = new AbcFile(new Uint8Array(this.response), v, true);
if (++filesLoaded === a.length) {
abcFiles.forEach(function (abc) {
executeAbc(abc, ALWAYS_INTERPRET);
(filesLoaded === 1 ? executeAbc : loadAbc)(abc, ALWAYS_INTERPRET);
});
SWF.embed("../../examples/as3_tiger/tiger.swf", document.getElementById("stage"));
}

Просмотреть файл

@ -62,7 +62,7 @@
abcFiles[i] = new AbcFile(new Uint8Array(this.response), v, true);
if (++filesLoaded === a.length) {
abcFiles.forEach(function (abc) {
executeAbc(abc, ALWAYS_INTERPRET);
(filesLoaded === 1 ? executeAbc : loadAbc)(abc, ALWAYS_INTERPRET);
});
}
}