aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/dc/time.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/dc/time.cpp')
-rw-r--r--backends/platform/dc/time.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/dc/time.cpp b/backends/platform/dc/time.cpp
index 06bb931717..890e98f6b4 100644
--- a/backends/platform/dc/time.cpp
+++ b/backends/platform/dc/time.cpp
@@ -51,8 +51,8 @@ void OSystem_Dreamcast::delayMillis(uint msecs)
getMillis();
unsigned int t, start = Timer();
int time = (((unsigned int)msecs)*3125U)>>6;
- while(((int)((t = Timer())-start))<time) {
- if(_timer != NULL)
+ while (((int)((t = Timer())-start))<time) {
+ if (_timer != NULL)
_timer->handler();
checkSound();
}