diff options
author | einstein95 <einstein95@users.noreply.github.com> | 2016-10-07 13:55:17 +1300 |
---|---|---|
committer | einstein95 <einstein95@users.noreply.github.com> | 2016-10-07 13:57:43 +1300 |
commit | e95485a8b0eacac8806c5948079919a271029897 (patch) | |
tree | 9b18d4c9f946d31390685f3185f91a3f35d613d2 /engine/save.asm | |
parent | fe3ea5c3f8cf36ef475fe19924590d8bc1af0952 (diff) |
More fixes, most from iimarckus
Diffstat (limited to 'engine/save.asm')
-rwxr-xr-x | engine/save.asm | 14 |
1 files changed, 7 insertions, 7 deletions
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 |