diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-04-10 15:01:49 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-04-10 15:01:49 -0400 |
commit | 6be4cd4da98093bf1b9362c946e693c89e4713ad (patch) | |
tree | 88d23a4b4a79f318b918ceeb3ff24c4ef1700b59 /engine/breeding/egg.asm | |
parent | bf73772a560ddfdf0b404ba3f85eb26542031b7b (diff) |
Local labels starting with lowercase letters are no longer decorated with a trailing colon
Diffstat (limited to 'engine/breeding/egg.asm')
-rwxr-xr-x | engine/breeding/egg.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/breeding/egg.asm b/engine/breeding/egg.asm index 7a5dfcf7c..b6f41743e 100755 --- a/engine/breeding/egg.asm +++ b/engine/breeding/egg.asm @@ -215,7 +215,7 @@ HatchEggs: ; 16f70 (5:6f70) xor a ld [CurPartyMon], a -.loop: ; 16f7a (5:6f7a) +.loop ; 16f7a (5:6f7a) ld a, [de] inc de cp -1 @@ -348,7 +348,7 @@ HatchEggs: ; 16f70 (5:6f70) ld bc, PKMN_NAME_LENGTH call CopyBytes -.next: ; 1707d (5:707d) +.next ; 1707d (5:707d) ld hl, CurPartyMon inc [hl] pop hl @@ -357,7 +357,7 @@ HatchEggs: ; 16f70 (5:6f70) pop de jp .loop -.done: ; 1708a (5:708a) +.done ; 1708a (5:708a) ret ; 1708b (5:708b) @@ -989,7 +989,7 @@ DayCareMonPrintEmptyString: ; 174b5 ret ; 174b9 -.string: ; 174b9 +.string ; 174b9 db "@" ; 174ba |