diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 16:27:43 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 16:27:43 -0400 |
commit | 91774f206e97d67cb8f16f5afeec03ce9c7e28ca (patch) | |
tree | 1a35d65d390633fa2d8c14618ecf99d97b776e59 /home/time.asm | |
parent | 98af69691d8994b07c19ef4e86f3f903da6091ed (diff) |
Replace "Unreferenced" labels with "; unreferenced" comments
Diffstat (limited to 'home/time.asm')
-rw-r--r-- | home/time.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/time.asm b/home/time.asm index 206d6dce4..0b51dea79 100644 --- a/home/time.asm +++ b/home/time.asm @@ -1,11 +1,11 @@ ; Functions relating to the timer interrupt and the real-time-clock. -Unreferenced_Timer:: +Timer:: ; unreferenced push af ldh a, [hMobile] and a jr z, .not_mobile - call Timer + call MobileTimer .not_mobile pop af @@ -256,7 +256,7 @@ SetClock:: call CloseSRAM ; unlatch clock, disable clock r/w ret -UnreferencedClearRTCStatus:: +ClearRTCStatus:: ; unreferenced ; clear sRTCStatusFlags xor a push af |