summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVendily <vendily1001@gmail.com>2021-10-19 20:04:58 -0400
committerVendily <vendily1001@gmail.com>2021-10-19 20:04:58 -0400
commit674eb7438d81931bf46351e9d7d227f473df1e33 (patch)
treebc23961c6b199af5ace17de6af5d46e4311a35b6
parent78c19b2fc42d08e1879ca800edfd48bf41f44b37 (diff)
Slight modification to the Caught Data Page to bump the text 1 tile away from the edge of the screen.
-rw-r--r--Add-a-fourth-stats-page.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/Add-a-fourth-stats-page.md b/Add-a-fourth-stats-page.md
index 79f1484..d1547e9 100644
--- a/Add-a-fourth-stats-page.md
+++ b/Add-a-fourth-stats-page.md
@@ -395,7 +395,7 @@ This is an alternative `loadOrangePage`, as opposed to the "Hello world!" exampl
+LoadOrangePage:
+ call .placeCaughtLocation
+ ld de, MetAtMapString
-+ hlcoord 0, 9
++ hlcoord 1, 9
+ call PlaceString
+ call .placeCaughtLevel
+ ret
@@ -411,7 +411,7 @@ This is an alternative `loadOrangePage`, as opposed to the "Hello world!" exampl
+ ld e, a
+ farcall GetLandmarkName
+ ld de, wStringBuffer1
-+ hlcoord 1, 10
++ hlcoord 2, 10
+ call PlaceString
+ ld a, [wTempMonCaughtTime]
+ and CAUGHT_TIME_MASK
@@ -425,13 +425,13 @@ This is an alternative `loadOrangePage`, as opposed to the "Hello world!" exampl
+ ld e, l
+ call CopyName1
+ ld de, wStringBuffer2
-+ hlcoord 1, 11
++ hlcoord 2, 11
+ call PlaceString
+ ret
+
+.unknown_location:
+ ld de, MetUnknownMapString
-+ hlcoord 1, 10
++ hlcoord 2, 10
+ call PlaceString
+ ret
+
@@ -452,20 +452,20 @@ This is an alternative `loadOrangePage`, as opposed to the "Hello world!" exampl
+
+.print
+ ld [wTextDecimalByte], a
-+ hlcoord 2, 13
++ hlcoord 3, 13
+ ld de, wTextDecimalByte
+ lb bc, PRINTNUM_LEFTALIGN | 1, 3
+ call PrintNum
+ ld de, MetAtLevelString
-+ hlcoord 0, 12
++ hlcoord 1, 12
+ call PlaceString
-+ hlcoord 1, 13
++ hlcoord 2, 13
+ ld [hl], "<LV>"
+ ret
+
+.unknown_level
+ ld de, MetUnknownLevelString
-+ hlcoord 1, 12
++ hlcoord 2, 12
+ call PlaceString
+ ret
+