mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Merge pull request #5137 from samme/fix/decode-audio-error-msg
Fix 'Error decoding audio' message
This commit is contained in:
commit
6fddce1ef8
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ var AudioFile = new Class({
|
|||
function (e)
|
||||
{
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('Error decoding audio: ' + this.key + ' - ', e ? e.message : null);
|
||||
console.error('Error decoding audio: ' + _this.key + ' - ', e ? e.message : null);
|
||||
|
||||
_this.onProcessError();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue