aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/string.cpp
diff options
context:
space:
mode:
authorMax Horn2011-05-14 23:50:18 +0200
committerMax Horn2011-05-14 23:50:43 +0200
commit82343f6649fed0a8b315e31c8b5177e4840b76e4 (patch)
treecb05cc97f12ce19bfd67aef9cc2cce7cdff9fa53 /engines/scumm/string.cpp
parentefac5c42d7d6ec91440e7c03e8205ce474e5437d (diff)
downloadscummvm-rg350-82343f6649fed0a8b315e31c8b5177e4840b76e4.tar.gz
scummvm-rg350-82343f6649fed0a8b315e31c8b5177e4840b76e4.tar.bz2
scummvm-rg350-82343f6649fed0a8b315e31c8b5177e4840b76e4.zip
SCUMM: Remove some unused var warnings (see bug #3293800)
Diffstat (limited to 'engines/scumm/string.cpp')
-rw-r--r--engines/scumm/string.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp
index 54826c3fea..c27b6d5e1c 100644
--- a/engines/scumm/string.cpp
+++ b/engines/scumm/string.cpp
@@ -352,7 +352,7 @@ bool ScummEngine::handleNextCharsetCode(Actor *a, int *code) {
bool ScummEngine_v72he::handleNextCharsetCode(Actor *a, int *code) {
const int charsetCode = (_game.heversion >= 80) ? 127 : 64;
uint32 talk_sound_a = 0;
- uint32 talk_sound_b = 0;
+ //uint32 talk_sound_b = 0;
int i, c = 0;
char value[32];
bool endLoop = false;
@@ -383,7 +383,7 @@ bool ScummEngine_v72he::handleNextCharsetCode(Actor *a, int *code) {
i++;
}
value[i] = 0;
- talk_sound_b = atoi(value);
+ //talk_sound_b = atoi(value);
((SoundHE *)_sound)->startHETalkSound(talk_sound_a);
break;
case 104:
@@ -406,7 +406,7 @@ bool ScummEngine_v72he::handleNextCharsetCode(Actor *a, int *code) {
}
value[i] = 0;
talk_sound_a = atoi(value);
- talk_sound_b = 0;
+ //talk_sound_b = 0;
((SoundHE *)_sound)->startHETalkSound(talk_sound_a);
break;
case 119: