Update variable name.

This commit is contained in:
Karishma Chadha 2018-04-17 09:36:21 -04:00
parent a3ecd2ddc2
commit 8d67c6a4c3

View file

@ -235,8 +235,8 @@ class AudioEngine {
return (new ADPCMSoundDecoder(this.audioContext)).decode(bufferCopy2) return (new ADPCMSoundDecoder(this.audioContext)).decode(bufferCopy2)
.then( .then(
addDecodedAudio, addDecodedAudio,
sndError => { error => {
log.warn('audio data could not be decoded', sndError); log.warn('audio data could not be decoded', error);
} }
); );
} }