aboutsummaryrefslogtreecommitdiff
path: root/common/system.cpp
diff options
context:
space:
mode:
authorMax Horn2006-05-06 18:10:38 +0000
committerMax Horn2006-05-06 18:10:38 +0000
commitae50315fa05598e83699b87e797c88a57858962e (patch)
tree0493addf8b30688cd04e1d932bba7183f582c0ef /common/system.cpp
parent37d2f30999398acc4bb3edff5b6cdac29a2af7c3 (diff)
downloadscummvm-rg350-ae50315fa05598e83699b87e797c88a57858962e.tar.gz
scummvm-rg350-ae50315fa05598e83699b87e797c88a57858962e.tar.bz2
scummvm-rg350-ae50315fa05598e83699b87e797c88a57858962e.zip
Added a default implementation of the OSystem CD API (which simply does nothing)
svn-id: r22370
Diffstat (limited to 'common/system.cpp')
-rw-r--r--common/system.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/common/system.cpp b/common/system.cpp
index 8b40114630..4207b1f64f 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -64,3 +64,22 @@ void OSystem::displayMessageOnOSD(const char *msg) {
Common::SaveFileManager *OSystem::getSavefileManager() {
return new Common::DefaultSaveFileManager();
}
+
+
+bool OSystem::openCD(int drive) {
+ return false;
+}
+
+bool OSystem::pollCD() {
+ return false;
+}
+
+void OSystem::playCD(int track, int num_loops, int start_frame, int duration) {
+}
+
+void OSystem::stopCD() {
+}
+
+void OSystem::updateCD() {
+}
+