aboutsummaryrefslogtreecommitdiff
path: root/backends/dc/dcmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/dc/dcmain.cpp')
-rw-r--r--backends/dc/dcmain.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/backends/dc/dcmain.cpp b/backends/dc/dcmain.cpp
index 7217b59f7f..77a0afa236 100644
--- a/backends/dc/dcmain.cpp
+++ b/backends/dc/dcmain.cpp
@@ -144,6 +144,30 @@ void OSystem_Dreamcast::delay_msecs(uint msecs)
get_msecs();
}
+void OSystem_Dreamcast::set_timer(int timer, int (*callback)(int))
+{
+ warning("Setting a timer! (not supported.)\n");
+}
+
+/* Mutex handling */
+void *OSystem_Dreamcast::create_mutex(void)
+{
+ return NULL;
+}
+
+void OSystem_Dreamcast::lock_mutex(void *mutex)
+{
+}
+
+void OSystem_Dreamcast::unlock_mutex(void *mutex)
+{
+}
+
+void OSystem_Dreamcast::delete_mutex(void *mutex)
+{
+}
+
+
/*
void waitForTimer(Scumm *s, int time)
{