From e71e51866fd56a080aca28bfc1ea3f33101c7663 Mon Sep 17 00:00:00 2001 From: Karishma Chadha Date: Fri, 13 Apr 2018 11:28:04 -0400 Subject: [PATCH] Fix typo. --- src/import/load-sound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import/load-sound.js b/src/import/load-sound.js index 517cb6848..e13db14d2 100644 --- a/src/import/load-sound.js +++ b/src/import/load-sound.js @@ -25,7 +25,7 @@ const loadSoundFromAsset = function (sound, soundAsset, runtime) { // Set the sound sample rate and sample count based on the // the audio buffer from the audio engine since the sound // gets resampled by the audio engine - const soundBuffer = runtime.udioEngine.getSoundBuffer(soundId); + const soundBuffer = runtime.audioEngine.getSoundBuffer(soundId); sound.rate = soundBuffer.sampleRate; sound.sampleCount = soundBuffer.length;