diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2019-11-04 19:40:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-04 19:40:58 -0500 |
commit | 9ebe549347aa16ae3f10d3261242bb1e7bbb6ca6 (patch) | |
tree | 521a897c2da997534abd6f6adc1625968bc4603a /engine/rtc | |
parent | c9563d5c5e8e3612ac40d70d6f6f5e03ba231f16 (diff) | |
parent | d076159745e688bd58f1e512c4e0fcdd942161e9 (diff) |
Merge pull request #654 from Rangi42/master
Miscellaneous cleanup issues
Diffstat (limited to 'engine/rtc')
-rw-r--r-- | engine/rtc/timeset.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/rtc/timeset.asm b/engine/rtc/timeset.asm index ab47c5e56..da1012ff8 100644 --- a/engine/rtc/timeset.asm +++ b/engine/rtc/timeset.asm @@ -273,19 +273,19 @@ SetMinutes: DisplayMinutesWithMinString: ld de, wInitMinuteBuffer - call PrintTwoDigitNumberRightAlign + call PrintTwoDigitNumberLeftAlign inc hl ld de, String_min call PlaceString ret -PrintTwoDigitNumberRightAlign: +PrintTwoDigitNumberLeftAlign: push hl ld a, " " ld [hli], a ld [hl], a pop hl - lb bc, PRINTNUM_RIGHTALIGN | 1, 2 + lb bc, PRINTNUM_LEFTALIGN | 1, 2 call PrintNum ret @@ -684,7 +684,7 @@ PrintHour: call AdjustHourForAMorPM ld [wDeciramBuffer], a ld de, wDeciramBuffer - call PrintTwoDigitNumberRightAlign + call PrintTwoDigitNumberLeftAlign ret GetTimeOfDayString: |