diff options
Diffstat (limited to 'engine')
-rwxr-xr-x | engine/HoF_room_pc.asm | 6 | ||||
-rwxr-xr-x | engine/hall_of_fame.asm | 2 | ||||
-rwxr-xr-x | engine/menu/league_pc.asm | 2 | ||||
-rwxr-xr-x | engine/save.asm | 14 | ||||
-rwxr-xr-x | engine/status_ailments.asm | 12 | ||||
-rwxr-xr-x | engine/town_map.asm | 6 |
6 files changed, 21 insertions, 21 deletions
diff --git a/engine/HoF_room_pc.asm b/engine/HoF_room_pc.asm index d91c983b..a39daf06 100755 --- a/engine/HoF_room_pc.asm +++ b/engine/HoF_room_pc.asm @@ -246,12 +246,12 @@ Credits: pop de ld de, TheEndGfx ld hl, vChars2 + $600 - lb bc, BANK(TheEndGfx), (TheEndGfxEnd - TheEndGfx) / $10 + lb bc, BANK(TheEndGfx), (TheEndGfxEnd - TheEndGfx) / $0C call CopyVideoData - coord hl, 4, 8 + coord hl, 7, 8 ld de, TheEndTextString call PlaceString - coord hl, 4, 9 + coord hl, 7, 9 inc de call PlaceString jp FadeInCreditsText diff --git a/engine/hall_of_fame.asm b/engine/hall_of_fame.asm index 10b73bb0..13c6f4dc 100755 --- a/engine/hall_of_fame.asm +++ b/engine/hall_of_fame.asm @@ -237,7 +237,7 @@ HoFDisplayPlayerStats: call PlaceString coord hl, 4, 10 ld de, wPlayerMoney - ld c, $a3 + ld c, $83 call PrintBCDNumber ld [hl], $F0 ld hl, DexSeenOwnedText diff --git a/engine/menu/league_pc.asm b/engine/menu/league_pc.asm index 826d9512..eb561caf 100755 --- a/engine/menu/league_pc.asm +++ b/engine/menu/league_pc.asm @@ -106,7 +106,7 @@ LeaguePCShowMon: coord hl, 1, 15 ld de, HallOfFameNoText call PlaceString - coord hl, 16, 15 + coord hl, 15, 15 ld de, wHoFTeamNo lb bc, 1, 3 call PrintNumber diff --git a/engine/save.asm b/engine/save.asm index d1a370f2..f9acdd57 100755 --- a/engine/save.asm +++ b/engine/save.asm @@ -427,7 +427,7 @@ DisplayChangeBoxMenu: ld [wMaxMenuItem], a ld a, 1 ld [wTopMenuItemY], a - ld a, 12 + ld a, 10 ld [wTopMenuItemX], a xor a ld [wMenuWatchMovingOutOfBounds], a @@ -437,18 +437,18 @@ DisplayChangeBoxMenu: ld [wLastMenuItem], a coord hl, 0, 0 ld b, 2 - ld c, 9 + ld c, 7 call TextBoxBorder ld hl, ChooseABoxText call PrintText - coord hl, 11, 0 + coord hl, 9, 0 ld b, 12 - ld c, 7 + ld c, 9 call TextBoxBorder ld hl, hFlags_0xFFF6 set 2, [hl] ld de, BoxNames - coord hl, 13, 1 + coord hl, 11, 1 call PlaceString ld hl, hFlags_0xFFF6 res 2, [hl] @@ -457,14 +457,14 @@ DisplayChangeBoxMenu: cp 9 jr c, .singleDigitBoxNum sub 9 - coord hl, 8, 2 + coord hl, 6, 2 ld [hl], "1" add "0" jr .next .singleDigitBoxNum add "1" .next - Coorda 9, 2 + Coorda 7, 2 coord hl, 1, 2 ld de, BoxNoText call PlaceString diff --git a/engine/status_ailments.asm b/engine/status_ailments.asm index 787533c4..d0ff95cb 100755 --- a/engine/status_ailments.asm +++ b/engine/status_ailments.asm @@ -12,9 +12,9 @@ PrintStatusAilment: ret z ld a, "S" ld [hli], a - ld a, "L" + ld a, "O" ld [hli], a - ld [hl], "P" + ld [hl], "M" ret .psn ld a, "P" @@ -28,14 +28,14 @@ PrintStatusAilment: ld [hli], a ld a, "R" ld [hli], a - ld [hl], "N" + ld [hl], "U" ret .frz - ld a, "F" + ld a, "G" ld [hli], a - ld a, "R" + ld a, "E" ld [hli], a - ld [hl], "Z" + ld [hl], "L" ret .par ld a, "P" diff --git a/engine/town_map.asm b/engine/town_map.asm index 7cdc1867..7c4654aa 100755 --- a/engine/town_map.asm +++ b/engine/town_map.asm @@ -118,9 +118,9 @@ LoadTownMap_Nest: push hl call DisplayWildLocations call GetMonName - coord hl, 1, 0 + coord hl, 8, 0 call PlaceString - ld hl, $C381 + coord hl, 1, 0 ld de, MonsNestText call PlaceString call WaitForTextScrollButtonPress @@ -243,7 +243,7 @@ LoadTownMap_Fly: jr .pressedDown ToText: - db "To@" + db " ‘@" BuildFlyLocationsList: ld hl, wFlyLocationsList - 1 |