summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/joypad.asm1
-rw-r--r--home/time.asm4
2 files changed, 3 insertions, 2 deletions
diff --git a/home/joypad.asm b/home/joypad.asm
index f562d0878..b39f8c0f4 100644
--- a/home/joypad.asm
+++ b/home/joypad.asm
@@ -14,6 +14,7 @@ ClearJoypad::
ret
Joypad::
+; This is called automatically every frame in VBlank.
; Read the joypad register and translate it to something more
; workable for use in-game. There are 8 buttons, so we can use
; one byte to contain all player input.
diff --git a/home/time.asm b/home/time.asm
index e631fe060..b708329c5 100644
--- a/home/time.asm
+++ b/home/time.asm
@@ -1,6 +1,6 @@
; Functions relating to the timer interrupt and the real-time-clock.
-AskTimer::
+Unreferenced_Timer::
push af
ldh a, [hMobile]
and a
@@ -195,7 +195,7 @@ InitTime::
farcall _InitTime
ret
-PanicResetClock::
+ClearClock::
call .ClearhRTC
call SetClock
ret