diff options
author | dannye <33dannye@gmail.com> | 2021-02-06 11:14:03 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-02-06 11:14:03 -0600 |
commit | 353e68e5588587017ff288250e85369c2116a19d (patch) | |
tree | 60c35e275e0108a5a2b40710e4bb628508da4868 /src/wram.asm | |
parent | 6e5930f1fd92ba435c58a7936b15ded2cd4118aa (diff) |
Rename event flags to event vars
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wram.asm b/src/wram.asm index 184542f..c20900f 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -2319,11 +2319,11 @@ wd3bb:: ; d3bb wd3d0:: ; d3d0 ds $1 -; the bits relevant to the currently worked on flag, obtained from EventFlagMods -wLoadedFlagBits:: ; d3d1 +; the bits relevant to the currently worked on event, obtained from EventVarMasks +wLoadedEventBits:: ; d3d1 ds $1 -wEventFlags:: ; d3d2 +wEventVars:: ; d3d2 ds $40 ; 0 keeps looping, other values break the loop in RST20 @@ -2333,7 +2333,7 @@ wBreakScriptLoop:: ; d412 wScriptPointer:: ; d413 ds $2 -; generally set to ff when a flag check passes, 0 otherwise +; generally set to ff when an event check passes, 0 otherwise wScriptControlByte:: ; d415 ds $1 |