diff options
Diffstat (limited to 'data')
-rwxr-xr-x | data/battle_anims/objects.asm | 2 | ||||
-rwxr-xr-x | data/map_objects.asm | 2 | ||||
-rw-r--r-- | data/odd_eggs.asm | 2 | ||||
-rw-r--r-- | data/palettes/town_map.asm | 2 | ||||
-rw-r--r-- | data/phone_contacts.asm | 2 | ||||
-rw-r--r-- | data/phone_special.asm | 2 | ||||
-rw-r--r-- | data/unown_words.asm | 2 | ||||
-rw-r--r-- | data/wild/roammon_maps.asm | 2 | ||||
-rw-r--r-- | data/wild/treemon_maps.asm | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/data/battle_anims/objects.asm b/data/battle_anims/objects.asm index 8117d8495..62ec0140e 100755 --- a/data/battle_anims/objects.asm +++ b/data/battle_anims/objects.asm @@ -14,7 +14,7 @@ battleanimobj: MACRO db \4 ; callback db \5 ; palette db \6 ; tile offset -endm +ENDM BattleAnimObjects: ; ccb56 ; entries correspond to ANIM_OBJ_* constants diff --git a/data/map_objects.asm b/data/map_objects.asm index b321dcced..19a7c8d27 100755 --- a/data/map_objects.asm +++ b/data/map_objects.asm @@ -1,7 +1,7 @@ sprite_movement_data: MACRO db \1, \2, \3, \4, \5 dn \6, 0 -endm +ENDM SpriteMovementData:: ; 4273 ; entries correspond to SPRITEMOVEDATA_* constants diff --git a/data/odd_eggs.asm b/data/odd_eggs.asm index f9a29f6d6..aa7e8176b 100644 --- a/data/odd_eggs.asm +++ b/data/odd_eggs.asm @@ -1,7 +1,7 @@ prob: MACRO prob_total = prob_total + (\1) dw prob_total * $ffff / 100 -endm +ENDM OddEggProbabilities: prob_total = 0 diff --git a/data/palettes/town_map.asm b/data/palettes/town_map.asm index 1672a66ed..696863e85 100644 --- a/data/palettes/town_map.asm +++ b/data/palettes/town_map.asm @@ -12,7 +12,7 @@ rept _NARG / 2 shift shift endr -endm +ENDM ; gfx/pokegear/town_map.png townmappals EARTH, EARTH, EARTH, MOUNTAIN, MOUNTAIN, MOUNTAIN diff --git a/data/phone_contacts.asm b/data/phone_contacts.asm index c4d600edc..cfeaad8a1 100644 --- a/data/phone_contacts.asm +++ b/data/phone_contacts.asm @@ -6,7 +6,7 @@ phone: MACRO dba \5 db \6 dba \7 -endm +ENDM PhoneContacts: ; 9045f ; entries correspond to PHONE_* constants diff --git a/data/phone_special.asm b/data/phone_special.asm index e224bf43a..03c27743a 100644 --- a/data/phone_special.asm +++ b/data/phone_special.asm @@ -3,7 +3,7 @@ specialcall: MACRO dw \1 db \2 dba \3 -endm +ENDM SpecialPhoneCallList: ; 90627 ; entries correspond to SPECIALCALL_* constants diff --git a/data/unown_words.asm b/data/unown_words.asm index d019975c9..ea8c4b2a8 100644 --- a/data/unown_words.asm +++ b/data/unown_words.asm @@ -5,7 +5,7 @@ x = 1 x = x + 1 endr db -1 -endm +ENDM UnownWords: ; fba5a ; entries correspond to Unown forms diff --git a/data/wild/roammon_maps.asm b/data/wild/roammon_maps.asm index bf676c3a9..c0b552b26 100644 --- a/data/wild/roammon_maps.asm +++ b/data/wild/roammon_maps.asm @@ -10,7 +10,7 @@ rept \2 shift endr db 0 -endm +ENDM RoamMaps: ; 2a40f roam_map ROUTE_29, 2, ROUTE_30, ROUTE_46 diff --git a/data/wild/treemon_maps.asm b/data/wild/treemon_maps.asm index f70617117..e825930cc 100644 --- a/data/wild/treemon_maps.asm +++ b/data/wild/treemon_maps.asm @@ -1,7 +1,7 @@ treemon_map: MACRO map \1 db \2 ; treemon set -endm +ENDM TreeMonMaps: ; b825e treemon_map ROUTE_26, 4 |