diff options
Diffstat (limited to 'backends/dc')
| -rw-r--r-- | backends/dc/dc.h | 2 | ||||
| -rw-r--r-- | backends/dc/time.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/dc/dc.h b/backends/dc/dc.h index 7a17b964a1..b040edab92 100644 --- a/backends/dc/dc.h +++ b/backends/dc/dc.h @@ -135,7 +135,7 @@ class OSystem_Dreamcast : public OSystem { void copy_rect_overlay(const int16 *buf, int pitch, int x, int y, int w, int h); // Add a callback timer - void set_timer(TimerProc callback, int timer); + void setTimerCallback(TimerProc callback, int timer); // Mutex handling MutexRef createMutex(); diff --git a/backends/dc/time.cpp b/backends/dc/time.cpp index b508b3c45d..2771fc33c2 100644 --- a/backends/dc/time.cpp +++ b/backends/dc/time.cpp @@ -53,7 +53,7 @@ void OSystem_Dreamcast::delay_msecs(uint msecs) get_msecs(); } -void OSystem_Dreamcast::set_timer(TimerProc callback, int timer) +void OSystem_Dreamcast::setTimerCallback(TimerProc callback, int timer) { if (callback != NULL) { _timer_duration = timer; |
