mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Rename two unknown functions
svn-id: r8131
This commit is contained in:
parent
0324ae9145
commit
fb5bd02b40
@ -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;
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user