diff options
author | Oliver Kiehl | 2002-12-08 13:37:38 +0000 |
---|---|---|
committer | Oliver Kiehl | 2002-12-08 13:37:38 +0000 |
commit | 6102cca2a1c0fce72ce5270bc0f9365808f8cac5 (patch) | |
tree | 4b5c28b76c47d80e830e24bf2a3461dc0b1c624d /simon | |
parent | 42d24ba562f1a1454a5eb2ff4a62ff3d3ed8e16c (diff) | |
download | scummvm-rg350-6102cca2a1c0fce72ce5270bc0f9365808f8cac5.tar.gz scummvm-rg350-6102cca2a1c0fce72ce5270bc0f9365808f8cac5.tar.bz2 scummvm-rg350-6102cca2a1c0fce72ce5270bc0f9365808f8cac5.zip |
fixed Plato's two-fold error
svn-id: r5878
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index d000ce7762..e2e0adcd05 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -2506,7 +2506,7 @@ void SimonState::skip_speech() _sound->stopVoice(); if (!(_bit_array[1] & 0x1000)) { _bit_array[0] |= 0x4000; - _variableArray[200] = 5; + _variableArray[100] = 5; start_vga_code(4, 1, 0x1e, 0, 0, 0); o_wait_for_vga(0x82); o_unk_99_simon2(2, 1); @@ -3743,7 +3743,7 @@ void SimonState::talk_with_speech(uint speech_id, uint num_1) if (speech_id == 9999) { if (!(_bit_array[0] & 0x4000) && !(_bit_array[1] & 0x1000)) { _bit_array[0] |= 0x4000; - _variableArray[0xc8 / 2] = 0xF; + _variableArray[100] = 0xF; start_vga_code(4, 1, 0x82, 0, 0, 0); o_wait_for_vga(0x82); } @@ -3765,7 +3765,7 @@ void SimonState::talk_with_speech(uint speech_id, uint num_1) return; if (!(_bit_array[0] & 0x4000 || _bit_array[1] & 0x1000)) { _bit_array[0] |= 0x4000; - _variableArray[200] = 5; + _variableArray[100] = 5; start_vga_code(4, 1, 0x1e, 0, 0, 0); o_wait_for_vga(0x82); } |