From ce8c99bf62838099142aa79f2935e64639aa5571 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 28 Sep 2004 20:19:37 +0000 Subject: Rename remaining OSystem methods to match our coding guidelines svn-id: r15332 --- backends/dc/time.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'backends/dc/time.cpp') 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))