aboutsummaryrefslogtreecommitdiff
path: root/backends/wince
diff options
context:
space:
mode:
authorMax Horn2003-07-22 20:36:43 +0000
committerMax Horn2003-07-22 20:36:43 +0000
commit73e7afaf180b28daa561c7c24908f104be44858e (patch)
tree6adaa18785fcc4f51222035891e60caa7fdb1b15 /backends/wince
parentd15039d2e4f63a1c8c3cefe64bc8e8bb4364aa77 (diff)
downloadscummvm-rg350-73e7afaf180b28daa561c7c24908f104be44858e.tar.gz
scummvm-rg350-73e7afaf180b28daa561c7c24908f104be44858e.tar.bz2
scummvm-rg350-73e7afaf180b28daa561c7c24908f104be44858e.zip
adjusted to play_cdrom parameter name change in common/system.h
svn-id: r9132
Diffstat (limited to 'backends/wince')
-rw-r--r--backends/wince/wince.cpp2
-rw-r--r--backends/wince/wince.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/wince/wince.cpp b/backends/wince/wince.cpp
index ac5584d7dd..703e752ab3 100644
--- a/backends/wince/wince.cpp
+++ b/backends/wince/wince.cpp
@@ -1831,7 +1831,7 @@ void OSystem_WINCE3::quit() {
/* CDRom Audio */
void OSystem_WINCE3::stop_cdrom() {;}
-void OSystem_WINCE3::play_cdrom(int track, int num_loops, int start_frame, int end_frame) {;}
+void OSystem_WINCE3::play_cdrom(int track, int num_loops, int start_frame, int duration) {;}
bool OSystem_WINCE3::poll_cdrom() {return 0;}
void OSystem_WINCE3::update_cdrom() {;}
diff --git a/backends/wince/wince.h b/backends/wince/wince.h
index 7e52cc5e5b..2bc05abf0e 100644
--- a/backends/wince/wince.h
+++ b/backends/wince/wince.h
@@ -123,7 +123,7 @@ public:
bool poll_cdrom();
// Play cdrom audio track
- void play_cdrom(int track, int num_loops, int start_frame, int end_frame);
+ void play_cdrom(int track, int num_loops, int start_frame, int duration);
// Stop cdrom audio track
void stop_cdrom();