diff options
author | yenatch <yenatch@gmail.com> | 2013-09-24 03:51:42 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-24 03:51:42 -0400 |
commit | 73bd376cfd3fc39e30d0c06178e8f34f36604f84 (patch) | |
tree | 633a6b66fac1bd9795cb2d56cf1466a88feb346f /engine/scripting.asm | |
parent | 3134b26f7b5e27242eb9f2a4cdc976a250cf0813 (diff) |
rename bit2 script commands to flag
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index ef451f51e..c2eeb30f4 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -51,9 +51,9 @@ ScriptCommandTable: ; 0x96cb1 dw Script_checkevent dw Script_clearevent dw Script_setevent - dw Script_checkbit2 - dw Script_clearbit2 - dw Script_setbit2 + dw Script_checkflag + dw Script_clearflag + dw Script_setflag dw Script_wildon dw Script_wildoff dw Script_xycompare @@ -2715,7 +2715,7 @@ Script_checkevent: ; 0x979a4 ret ; 0x979bb -Script_setbit2: ; 0x979bb +Script_setflag: ; 0x979bb ; script command 0x36 ; parameters: ; bit_number (MultiByteParam) @@ -2729,7 +2729,7 @@ Script_setbit2: ; 0x979bb ret ; 0x979c9 -Script_clearbit2: ; 0x979c9 +Script_clearflag: ; 0x979c9 ; script command 0x35 ; parameters: ; bit_number (MultiByteParam) @@ -2743,7 +2743,7 @@ Script_clearbit2: ; 0x979c9 ret ; 0x979d7 -Script_checkbit2: ; 0x979d7 +Script_checkflag: ; 0x979d7 ; script command 0x34 ; parameters: ; bit_number (MultiByteParam) |