Revert var name.

svn-id: r12811
This commit is contained in:
Travis Howell 2004-02-10 12:15:45 +00:00
parent 9271ca5233
commit 514347c899

View file

@ -397,9 +397,11 @@ void ScummEngine_v6he::o6_setState() {
}
void ScummEngine_v6he::o6_startSound() {
// Seems to range between 952 - 9000
if (_gameId != GID_PUTTDEMO)
debug(2, "o6_startSound: unknown value %d", pop());
if (_gameId != GID_PUTTDEMO) {
// Seems to range between 952 - 9000
int offset = pop();
debug(2, "o6_startSound: offset %d", offset);
}
_sound->addSoundToQueue(pop());
}