diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/map.asm | 6 | ||||
-rw-r--r-- | home/menu.asm | 2 | ||||
-rw-r--r-- | home/trainers.asm | 3 |
3 files changed, 5 insertions, 6 deletions
diff --git a/home/map.asm b/home/map.asm index b315928b8..cd90c7e6c 100644 --- a/home/map.asm +++ b/home/map.asm @@ -2299,10 +2299,8 @@ LoadMapTileset:: pop hl ret -InexplicablyEmptyFunction:: -; unused -; Inexplicably empty. -; Seen in PredefPointers. +DummyEndPredef:: +; Unused function at the end of PredefPointers. rept 16 nop endr diff --git a/home/menu.asm b/home/menu.asm index e664550aa..29466e41c 100644 --- a/home/menu.asm +++ b/home/menu.asm @@ -200,7 +200,7 @@ PlaceVerticalMenuItems:: ld a, [de] ld c, a inc de - ld b, $0 + ld b, 0 add hl, bc jp PlaceString diff --git a/home/trainers.asm b/home/trainers.asm index eac8101e8..87f82cf0a 100644 --- a/home/trainers.asm +++ b/home/trainers.asm @@ -230,7 +230,8 @@ CheckTrainerFlag:: ; unreferenced PrintWinLossText:: ld a, [wBattleType] cp BATTLETYPE_CANLOSE - jr .canlose ; ?????????? + ; code was probably dummied out here + jr .canlose ; unused ld hl, wWinTextPointer |