diff options
| author | Travis Howell | 2003-05-24 12:26:28 +0000 |
|---|---|---|
| committer | Travis Howell | 2003-05-24 12:26:28 +0000 |
| commit | 13739f18ef6c637799fc5f466f7d3f132268c0df (patch) | |
| tree | 57447eee22d95b349bdc6772318f240a3f8cff5a /simon/items.cpp | |
| parent | e95d717fb16ad880d631b796e12c658377b54323 (diff) | |
| download | scummvm-rg350-13739f18ef6c637799fc5f466f7d3f132268c0df.tar.gz scummvm-rg350-13739f18ef6c637799fc5f466f7d3f132268c0df.tar.bz2 scummvm-rg350-13739f18ef6c637799fc5f466f7d3f132268c0df.zip | |
More renames
svn-id: r7884
Diffstat (limited to 'simon/items.cpp')
| -rw-r--r-- | simon/items.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index 760db17dc3..8916e49e0c 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -533,13 +533,13 @@ int SimonState::runScript() { } break; - case 99:{ /* kill thread */ + case 99:{ /* kill sprite */ if (!(_game & GF_SIMON2)) { - o_kill_thread_simon1(getVarOrWord()); + o_kill_sprite_simon1(getVarOrWord()); } else { uint a = getVarOrWord(); uint b = getVarOrWord(); - o_kill_thread_simon2(a, b); + o_kill_sprite_simon2(a, b); } } break; @@ -1491,7 +1491,7 @@ void SimonState::o_unk_103() { unlock(); } -void SimonState::o_kill_thread_simon1(uint a) { +void SimonState::o_kill_sprite_simon1(uint a) { uint16 b = TO_BE_16(a); _lock_word |= 0x4000; _vc_ptr = (byte *)&b; @@ -1499,7 +1499,7 @@ void SimonState::o_kill_thread_simon1(uint a) { _lock_word &= ~0x4000; } -void SimonState::o_kill_thread_simon2(uint a, uint b) { +void SimonState::o_kill_sprite_simon2(uint a, uint b) { uint16 items[2]; items[0] = TO_BE_16(a); |
