aboutsummaryrefslogtreecommitdiff
path: root/backends/dc/time.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/dc/time.cpp')
-rw-r--r--backends/dc/time.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/dc/time.cpp b/backends/dc/time.cpp
index 2771fc33c2..fd1ceaedd0 100644
--- a/backends/dc/time.cpp
+++ b/backends/dc/time.cpp
@@ -27,7 +27,7 @@
#include "dc.h"
-uint32 OSystem_Dreamcast::get_msecs()
+uint32 OSystem_Dreamcast::getMillis()
{
static uint32 msecs=0;
static unsigned int t0=0;
@@ -43,14 +43,14 @@ uint32 OSystem_Dreamcast::get_msecs()
return msecs += dm;
}
-void OSystem_Dreamcast::delay_msecs(uint msecs)
+void OSystem_Dreamcast::delayMillis(uint msecs)
{
- get_msecs();
+ getMillis();
unsigned int t, start = Timer();
int time = (((unsigned int)msecs)*100000U)>>11;
while(((int)((t = Timer())-start))<time)
checkSound();
- get_msecs();
+ getMillis();
}
void OSystem_Dreamcast::setTimerCallback(TimerProc callback, int timer)