diff options
author | Travis Howell | 2003-05-29 06:36:52 +0000 |
---|---|---|
committer | Travis Howell | 2003-05-29 06:36:52 +0000 |
commit | 1855dba9d366b0aca73d10556dc411692c6ce258 (patch) | |
tree | b6753c6fbf5531e18d877d2b811a36a6f28e1a56 /simon | |
parent | c4088b56e6e108d12d1f77d516fd0a2dda39c253 (diff) | |
download | scummvm-rg350-1855dba9d366b0aca73d10556dc411692c6ce258.tar.gz scummvm-rg350-1855dba9d366b0aca73d10556dc411692c6ce258.tar.bz2 scummvm-rg350-1855dba9d366b0aca73d10556dc411692c6ce258.zip |
Correct name
svn-id: r8081
Diffstat (limited to 'simon')
-rw-r--r-- | simon/debug.h | 4 | ||||
-rw-r--r-- | simon/vga.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/simon/debug.h b/simon/debug.h index 61d2077a97..b94dde3e02 100644 --- a/simon/debug.h +++ b/simon/debug.h @@ -1052,7 +1052,7 @@ const char *const simon1_video_opcode_name_table[] = { "|DUMMY_56", "|DUMMY_57", "|UNK_58", - "|SKIP_IF_TEXT", + "|SKIP_IF_VOICE", /* 60 */ "d|KILL_SPRITE", "ddd|INIT_SPRITE", @@ -1142,7 +1142,7 @@ const char *const simon2_video_opcode_name_table[] = { "|PALETTE_THING", "|PALETTE_THING_2", /* 64 */ - "|SKIP_IF_TEXT", + "|SKIP_IF_VOICE", "|PALETTE_THING_3", "|SKIP_IF_NZ", "|SKIP_IF_GE", diff --git a/simon/vga.cpp b/simon/vga.cpp index 8f0883903e..5f6f71d072 100644 --- a/simon/vga.cpp +++ b/simon/vga.cpp @@ -1759,7 +1759,7 @@ void SimonState::vc_63_palette_thing_2() { _video_var_3 = false; } -void SimonState::vc_64_skip_if_text() { +void SimonState::vc_64_skip_if_voice() { // Simon2 if (_sound->_voice_handle == 0) vc_skip_next_instruction(); |