aboutsummaryrefslogtreecommitdiff
path: root/simon/items.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/items.cpp')
-rw-r--r--simon/items.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/simon/items.cpp b/simon/items.cpp
index 2d84ce730e..5729c07b25 100644
--- a/simon/items.cpp
+++ b/simon/items.cpp
@@ -535,11 +535,11 @@ int SimonState::runScript() {
case 99:{ /* kill thread */
if (!(_game & GF_SIMON2)) {
- o_unk_99_simon1(getVarOrWord());
+ o_kill_thread_simon1(getVarOrWord());
} else {
uint a = getVarOrWord();
uint b = getVarOrWord();
- o_unk_99_simon2(a, b);
+ o_kill_thread_simon2(a, b);
}
}
break;
@@ -1504,7 +1504,7 @@ void SimonState::o_unk_103() {
unlock();
}
-void SimonState::o_unk_99_simon1(uint a) {
+void SimonState::o_kill_thread_simon1(uint a) {
uint16 b = TO_BE_16(a);
_lock_word |= 0x4000;
_vc_ptr = (byte *)&b;
@@ -1512,7 +1512,7 @@ void SimonState::o_unk_99_simon1(uint a) {
_lock_word &= ~0x4000;
}
-void SimonState::o_unk_99_simon2(uint a, uint b) {
+void SimonState::o_kill_thread_simon2(uint a, uint b) {
uint16 items[2];
items[0] = TO_BE_16(a);