From f4b15bb87f08b4c08326a2eb301998ef9906e367 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 29 May 2009 14:56:53 +0000 Subject: Fix warning about unused variable. svn-id: r41005 --- engines/sci/engine/ksound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci') diff --git a/engines/sci/engine/ksound.cpp b/engines/sci/engine/ksound.cpp index 75a5d0979c..5b08895af1 100644 --- a/engines/sci/engine/ksound.cpp +++ b/engines/sci/engine/ksound.cpp @@ -1002,7 +1002,7 @@ reg_t kDoAudio(EngineState *s, int funct_nr, int argc, reg_t *argv) { if (audioStream) mixer->playInputStream(Audio::Mixer::kSpeechSoundType, s->_sound._audioResource->getAudioHandle(), audioStream); } else if (argc == 6) { // SQ4CD or newer - uint32 volume = UKPV(1); + //uint32 volume = UKPV(1); // Make a BE number uint32 audioNumber = (((UKPV(2) & 0xFF) << 24) & 0xFF000000) | (((UKPV(3) & 0xFF) << 16) & 0x00FF0000) | -- cgit v1.2.3