diff options
author | Max Horn | 2008-07-11 20:28:14 +0000 |
---|---|---|
committer | Max Horn | 2008-07-11 20:28:14 +0000 |
commit | 815d75e870bc4d365cfa979f3786840eecece2ec (patch) | |
tree | 642598e7072388778083e785b80e7beb07044c69 /engines/igor | |
parent | c829fd3eafa860a6164111282d8746df466e3c18 (diff) | |
download | scummvm-rg350-815d75e870bc4d365cfa979f3786840eecece2ec.tar.gz scummvm-rg350-815d75e870bc4d365cfa979f3786840eecece2ec.tar.bz2 scummvm-rg350-815d75e870bc4d365cfa979f3786840eecece2ec.zip |
Don't use kPlainSoundType if you don't have to
svn-id: r33009
Diffstat (limited to 'engines/igor')
-rw-r--r-- | engines/igor/igor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/igor/igor.cpp b/engines/igor/igor.cpp index 018709f34f..4d4fb97762 100644 --- a/engines/igor/igor.cpp +++ b/engines/igor/igor.cpp @@ -404,7 +404,7 @@ void IgorEngine::playSound(int num, int type) { debugC(9, kDebugEngine, "playSound() %d", num); --num; int soundOffset = -1; - Audio::Mixer::SoundType soundType = Audio::Mixer::kPlainSoundType; + Audio::Mixer::SoundType soundType; Audio::SoundHandle *soundHandle = 0; if (type == 1) { if (_mixer->isSoundHandleActive(_sfxHandle)) { |