diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-04-10 14:42:14 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-04-10 14:42:14 -0400 |
commit | bf73772a560ddfdf0b404ba3f85eb26542031b7b (patch) | |
tree | ee3cbc2fb2be1b2353ebd4c9887de2d69a91d2f2 /engine/items.asm | |
parent | 46ead9b8498fe7191735bd99f667dd1f9147f969 (diff) |
Local labels starting with capital letters are now decorated with a trailing colon; remove trailing whitespace; globally correct line endings to UNIX style
Diffstat (limited to 'engine/items.asm')
-rwxr-xr-x | engine/items.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engine/items.asm b/engine/items.asm index ede8e4f73..81c080dda 100755 --- a/engine/items.asm +++ b/engine/items.asm @@ -50,17 +50,17 @@ _TossItem:: ; d20d rst JumpTable ret -.Pockets +.Pockets: dw .Item dw .KeyItem dw .Ball dw .TMHM -.Ball ; d228 +.Ball: ; d228 ld hl, NumBalls jp RemoveItemFromPocket -.TMHM ; d22e +.TMHM: ; d22e ld h, d ld l, e ld a, [CurItem] @@ -68,12 +68,12 @@ _TossItem:: ; d20d call GetTMHMNumber jp TossTMHM -.KeyItem ; d23a +.KeyItem: ; d23a ld h, d ld l, e jp TossKeyItem -.Item ; d23f +.Item: ; d23f ld h, d ld l, e @@ -92,17 +92,17 @@ _CheckItem:: ; d244 rst JumpTable ret -.Pockets +.Pockets: dw .Item dw .KeyItem dw .Ball dw .TMHM -.Ball ; d25f +.Ball: ; d25f ld hl, NumBalls jp CheckTheItem -.TMHM ; d265 +.TMHM: ; d265 ld h, d ld l, e ld a, [CurItem] @@ -110,12 +110,12 @@ _CheckItem:: ; d244 call GetTMHMNumber jp CheckTMHM -.KeyItem ; d271 +.KeyItem: ; d271 ld h, d ld l, e jp CheckKeyItems -.Item ; d276 +.Item: ; d276 ld h, d ld l, e |