diff options
author | Max Horn | 2003-07-22 20:29:06 +0000 |
---|---|---|
committer | Max Horn | 2003-07-22 20:29:06 +0000 |
commit | d15039d2e4f63a1c8c3cefe64bc8e8bb4364aa77 (patch) | |
tree | c8be8ea9eb5c6f66ed8b1c77de249f79b908cbdf | |
parent | 9bd7cdbce04fafcd823c9aee31a00ee16235af81 (diff) | |
download | scummvm-rg350-d15039d2e4f63a1c8c3cefe64bc8e8bb4364aa77.tar.gz scummvm-rg350-d15039d2e4f63a1c8c3cefe64bc8e8bb4364aa77.tar.bz2 scummvm-rg350-d15039d2e4f63a1c8c3cefe64bc8e8bb4364aa77.zip |
fixed play_cdrom docs
svn-id: r9131
-rw-r--r-- | common/system.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/system.h b/common/system.h index 357a512d68..34b9275079 100644 --- a/common/system.h +++ b/common/system.h @@ -285,12 +285,12 @@ public: /** * Start audio CD playback. - * @param track the track to play. - * @param num_loops how often playback should be repeated (-1 = infinitely often). - * @param start_frame the frame at which playback should start. - * @param end_frame the frame at which playback should end. + * @param track the track to play. + * @param num_loops how often playback should be repeated (-1 = infinitely often). + * @param start the frame at which playback should start (75 frames = 1 second). + * @param duration the number of frames to play. */ - virtual void play_cdrom(int track, int num_loops, int start_frame, int end_frame) = 0; + virtual void play_cdrom(int track, int num_loops, int start, int duration) = 0; /** // Stop audio CD playback |