Improved responsiveness

This commit is contained in:
2022-04-21 09:50:33 -07:00
parent 6cd31448ce
commit a1a99bade3
4 changed files with 7 additions and 15 deletions

View File

@@ -171,13 +171,14 @@ void main() {
// Begin the loop
while(1) {
// Perform non-graphical code updates
// Tick time.
timeUpdate();
wait_vbl_done();
// Update the input state
INPUT_STATE = joypad();
// Tick time.
timeUpdate();
// Update conversation pause effect
conversationPauseUpdate();
@@ -186,7 +187,5 @@ void main() {
// Update conversation fade effect
conversationFadeUpdate();
// mainDebugDraw():
}
}