summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/play_time.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/play_time.c b/src/play_time.c
index 27a57f28b..97f4ac22f 100644
--- a/src/play_time.c
+++ b/src/play_time.c
@@ -35,31 +35,31 @@ void PlayTimeCounter_Stop(void)
void PlayTimeCounter_Update(void)
{
- if (sPlayTimeCounterState == RUNNING)
- {
- gSaveBlock2Ptr->playTimeVBlanks++;
-
- if (gSaveBlock2Ptr->playTimeVBlanks > 59)
- {
- gSaveBlock2Ptr->playTimeVBlanks = 0;
- gSaveBlock2Ptr->playTimeSeconds++;
-
- if (gSaveBlock2Ptr->playTimeSeconds > 59)
- {
- gSaveBlock2Ptr->playTimeSeconds = 0;
- gSaveBlock2Ptr->playTimeMinutes++;
-
- if (gSaveBlock2Ptr->playTimeMinutes > 59)
- {
- gSaveBlock2Ptr->playTimeMinutes = 0;
- gSaveBlock2Ptr->playTimeHours++;
-
- if (gSaveBlock2Ptr->playTimeHours > 999)
- PlayTimeCounter_SetToMax();
- }
- }
- }
- }
+ if (sPlayTimeCounterState != RUNNING)
+ return;
+
+ gSaveBlock2Ptr->playTimeVBlanks++;
+
+ if (gSaveBlock2Ptr->playTimeVBlanks < 60)
+ return;
+
+ gSaveBlock2Ptr->playTimeVBlanks = 0;
+ gSaveBlock2Ptr->playTimeSeconds++;
+
+ if (gSaveBlock2Ptr->playTimeSeconds < 60)
+ return;
+
+ gSaveBlock2Ptr->playTimeSeconds = 0;
+ gSaveBlock2Ptr->playTimeMinutes++;
+
+ if (gSaveBlock2Ptr->playTimeMinutes < 60)
+ return;
+
+ gSaveBlock2Ptr->playTimeMinutes = 0;
+ gSaveBlock2Ptr->playTimeHours++;
+
+ if (gSaveBlock2Ptr->playTimeHours > 999)
+ PlayTimeCounter_SetToMax();
}
void PlayTimeCounter_SetToMax(void)