diff options
author | Johannes Schickel | 2009-06-24 17:01:01 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-06-24 17:01:01 +0000 |
commit | 6c049f6b29591262a30864d0570f2a6128f1594d (patch) | |
tree | 9cebaeb57a7f174a84a7abf3ec26bfea76fd38a4 | |
parent | 15b39466504e7f0fd3bfe9bd49efaed9a33584d9 (diff) | |
download | scummvm-rg350-6c049f6b29591262a30864d0570f2a6128f1594d.tar.gz scummvm-rg350-6c049f6b29591262a30864d0570f2a6128f1594d.tar.bz2 scummvm-rg350-6c049f6b29591262a30864d0570f2a6128f1594d.zip |
Silence unsued variables warnings.
svn-id: r41827
-rw-r--r-- | engines/cruise/function.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp index 5f65dce913..eab69c6846 100644 --- a/engines/cruise/function.cpp +++ b/engines/cruise/function.cpp @@ -202,7 +202,7 @@ int16 Op_Random(void) { int16 Op_PlayFX(void) { int volume = popVar(); int speed = popVar(); - int channelNum = popVar(); + /*int channelNum = */popVar(); int sampleNum = popVar(); if ((sampleNum >= 0) && (sampleNum < NUM_FILE_ENTRIES) && (filesDatabase[sampleNum].subData.ptr)) { @@ -219,7 +219,7 @@ int16 Op_PlayFX(void) { int16 Op_LoopFX(void) { int volume = popVar(); int speed = popVar(); - int channelNum = popVar(); + /*int channelNum = */popVar(); int sampleNum = popVar(); if ((sampleNum >= 0) && (sampleNum < NUM_FILE_ENTRIES) && (filesDatabase[sampleNum].subData.ptr)) { |