aboutsummaryrefslogtreecommitdiff
path: root/engines/igor
diff options
context:
space:
mode:
authorMax Horn2008-07-11 20:28:14 +0000
committerMax Horn2008-07-11 20:28:14 +0000
commit815d75e870bc4d365cfa979f3786840eecece2ec (patch)
tree642598e7072388778083e785b80e7beb07044c69 /engines/igor
parentc829fd3eafa860a6164111282d8746df466e3c18 (diff)
downloadscummvm-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.cpp2
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)) {