diff options
author | Travis Howell | 2003-05-30 07:46:45 +0000 |
---|---|---|
committer | Travis Howell | 2003-05-30 07:46:45 +0000 |
commit | fb5bd02b40cfa1accfcfdf60e20f4e985852a70a (patch) | |
tree | d01dfc65330ab60b6f7b51a6bbe340bb6a17e013 | |
parent | 0324ae9145bb64db87b0f5171ab63ce789fb9537 (diff) | |
download | scummvm-rg350-fb5bd02b40cfa1accfcfdf60e20f4e985852a70a.tar.gz scummvm-rg350-fb5bd02b40cfa1accfcfdf60e20f4e985852a70a.tar.bz2 scummvm-rg350-fb5bd02b40cfa1accfcfdf60e20f4e985852a70a.zip |
Rename two unknown functions
svn-id: r8131
-rw-r--r-- | simon/items.cpp | 8 | ||||
-rw-r--r-- | simon/simon.h | 3 |
2 files changed, 5 insertions, 6 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index 94c9656f27..78d08b35c0 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -969,8 +969,8 @@ int SimonState::runScript() { } break; - case 177:{ - o_177(); + case 177:{ /* Inventory descriptions */ + o_inventory_descriptions(); } break; @@ -983,7 +983,7 @@ int SimonState::runScript() { } break; - case 179:{ + case 179:{ /* Room descriptions */ uint b = getVarOrByte(); uint c = getVarOrByte(); uint a = getVarOrByte(); @@ -1217,7 +1217,7 @@ bool SimonState::o_unk_23(uint a) { return 0; } -void SimonState::o_177() { +void SimonState::o_inventory_descriptions() { uint a = getVarOrByte(); uint b = getVarOrByte(); const char *s = NULL; diff --git a/simon/simon.h b/simon/simon.h index 7bd4c41712..0d7cfeec37 100644 --- a/simon/simon.h +++ b/simon/simon.h @@ -483,7 +483,6 @@ public: void o_unk_175(); void o_unk_176(); void o_pathfind(int x, int y, uint var_1, uint var_2); - void o_unk_179(); void o_force_unlock(); void o_force_lock(); void o_read_vgares_328(); @@ -497,7 +496,7 @@ public: void o_setup_cond_c(); void setup_cond_c_helper(); - void o_177(); + void o_inventory_descriptions(); void lock(); void unlock(); |