diff options
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/dc/time.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/dc/time.cpp b/backends/platform/dc/time.cpp index 1912bed773..c3e664a1e3 100644 --- a/backends/platform/dc/time.cpp +++ b/backends/platform/dc/time.cpp @@ -48,7 +48,7 @@ void OSystem_Dreamcast::delayMillis(uint msecs) { getMillis(); unsigned int t, start = Timer(); - int time = (((unsigned int)msecs)*100000U)>>11; + int time = (((unsigned int)msecs)*3125U)>>6; while(((int)((t = Timer())-start))<time) { if(_timer != NULL) _timer->handler(); |