diff options
-rw-r--r-- | Add-a-fourth-stats-page.md | 16 |
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 + |