diff options
author | yenatch <yenatch@gmail.com> | 2013-08-23 15:48:26 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-08-23 15:49:24 -0400 |
commit | 3a24cff5eb7ae82b6f9ee8ac24e64496adab7a7e (patch) | |
tree | bcd747dbb0932a8c08bf67e0759de35566f4fe48 /engine/scripting.asm | |
parent | bc7b63b44a2d57d4cd67e4470fa88fbe6e303218 (diff) |
BitTableFunc -> FlagAction
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 79fbe69ee..68487a49d 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -843,7 +843,7 @@ Script_trainerstatus: ; 0x97132 ld d, [hl] call GetScriptByte ld b, a - call BitTable1Func + call EventFlagAction ld a, c and a ret z @@ -1256,7 +1256,7 @@ Unknown_0x9730b: ; 0x9730b xor a ret .asm_97321 - call BitTable1Func + call EventFlagAction ret ; 0x97325 @@ -2677,7 +2677,7 @@ Script_setbit1: ; 0x97988 call GetScriptByte ld d, a ld b, $1 - call BitTable1Func + call EventFlagAction ret ; 0x97996 @@ -2691,7 +2691,7 @@ Script_clearbit1: ; 0x97996 call GetScriptByte ld d, a ld b, $0 - call BitTable1Func + call EventFlagAction ret ; 0x979a4 @@ -2705,7 +2705,7 @@ Script_checkbit1: ; 0x979a4 call GetScriptByte ld d, a ld b, $2 - call BitTable1Func + call EventFlagAction ld a, c and a jr z, .asm_979b7 ; 0x979b3 $2 |