diff options
| author | yenatch <yenatch@gmail.com> | 2013-11-25 23:33:54 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2013-11-26 04:29:47 -0500 |
| commit | 04eb541f836218f2c987b63e311ec68ae0510d18 (patch) | |
| tree | a3ef57199ffdf4eac72b548b8972bac156f7a6b9 /engine | |
| parent | 3eb9851b84df52ff0bdb09ff0caebc5a5e1c32cb (diff) | |
proper section names and bank constants
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/events.asm | 3 | ||||
| -rw-r--r-- | engine/events_2.asm | 3 | ||||
| -rw-r--r-- | engine/scripting_crystal.asm | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/engine/events.asm b/engine/events.asm index d1b651f91..48fae0e0f 100644 --- a/engine/events.asm +++ b/engine/events.asm @@ -1,6 +1,7 @@ INCLUDE "includes.asm" -SECTION "events", ROMX, BANK[$25] + +SECTION "Events", ROMX, BANK[EVENTS] Function966b0: ; 966b0 xor a diff --git a/engine/events_2.asm b/engine/events_2.asm index 88b924bd7..682fd8237 100644 --- a/engine/events_2.asm +++ b/engine/events_2.asm @@ -1,8 +1,9 @@ INCLUDE "includes.asm" + ; More overworld event handling. -SECTION "events2", ROMX, BANK[$25] +SECTION "Events 2", ROMX, BANK[EVENTS] Function97c28: ; 97c28 ld hl, StatusFlags2 diff --git a/engine/scripting_crystal.asm b/engine/scripting_crystal.asm index 5a7468bda..6d80455a0 100644 --- a/engine/scripting_crystal.asm +++ b/engine/scripting_crystal.asm @@ -1,5 +1,7 @@ INCLUDE "pokecrystal.asm" INCLUDE "includes.asm" -SECTION "scripting", ROMX, BANK[$25] + +SECTION "Event Scripting", ROMX, BANK[EVENTS] + INCLUDE "engine/scripting.asm" |
