aboutsummaryrefslogtreecommitdiff
path: root/simon/vga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/vga.cpp')
-rw-r--r--simon/vga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index 9d7fc54b4b..e48db0c6c7 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -1597,7 +1597,7 @@ void SimonEngine::vc_59() {
vc_kill_sprite(file, start);
} while (++start != end);
} else {
- if (_sound->_voice_handle == 0)
+ if (_sound->_voice_handle == -1)
vc_skip_next_instruction();
}
}
@@ -1775,7 +1775,7 @@ void SimonEngine::vc_63_palette_thing_2() {
void SimonEngine::vc_64_skip_if_no_speech() {
// Simon2
- if (_sound->_voice_handle == 0)
+ if (_sound->_voice_handle == -1)
vc_skip_next_instruction();
}