diff options
author | JimB16 <f1@jimb.de> | 2015-08-26 01:40:34 +0200 |
---|---|---|
committer | JimB16 <f1@jimb.de> | 2015-08-26 01:40:34 +0200 |
commit | 2f4a0179feb846ac2eba945ba5365d0ebf6a6179 (patch) | |
tree | 43fd7cff652398dca6ad34daf2450534568b845d /main.asm | |
parent | b9c1d1b61e529ccda59cafda037c54964af544f3 (diff) |
changed constants to SRAMLabels
Diffstat (limited to 'main.asm')
-rw-r--r-- | main.asm | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -8803,7 +8803,7 @@ Functionde44: ; de44 Functionde6e: ; de6e - ld a, 1 ; BANK(sBoxCount) + ld a, BANK(sBoxCount) call GetSRAMBank ld de, sBoxCount ld a, [de] @@ -9067,7 +9067,7 @@ Functione039: ; e039 and a jr z, .asm_e04a - ld a, 1 ; BANK(sBoxCount) + ld a, BANK(sBoxCount) call GetSRAMBank ld hl, sBoxCount @@ -51399,7 +51399,7 @@ Function806ff: ; 806ff Function80715: ; 80715 ; Remaining slots in the current box. - ld a, 1 ; BANK(sBoxCount) + ld a, BANK(sBoxCount) call GetSRAMBank ld hl, sBoxCount ld a, MONS_PER_BOX @@ -93532,7 +93532,8 @@ INCLUDE "text/battle_tower.asm" SECTION "bank7C", ROMX, BANK[$7C] -Unknown_1f0000:: +BattleTowerTrainerData:: ; What exactly it is, I don't know +; Size is 70 (Nr of Trainers in BattleTower) * 0x24 (Nr of Bytes that are copied) INCBIN "unknown/1f0000.bin" |