Skip to content

Commit

Permalink
Merge pull request #743 from Akurn/fix/issue-742
Browse files Browse the repository at this point in the history
fix fileComplete reference error in Loader.loadVideoTag
  • Loading branch information
samme authored Sep 28, 2024
2 parents f42cd15 + eac02c6 commit f2508a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader/Loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -2640,7 +2640,7 @@ Phaser.Loader.prototype = {
file.data.removeEventListener(file.loadEvent, videoLoadEvent, false);
file.data.onerror = null;
file.data.canplay = true;
_this.game.load.fileComplete(file);
_this.fileComplete(file);
};

file.data.onerror = function ()
Expand Down

0 comments on commit f2508a8

Please sign in to comment.