aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/system.h b/system.h
index 274ce5993e..37139e769b 100644
--- a/system.h
+++ b/system.h
@@ -96,16 +96,16 @@ public:
// Poll cdrom status
// Returns true if cd audio is playing
- virtual bool poll_cdrom();
+ virtual bool poll_cdrom() = 0;
// Play cdrom audio track
- virtual void play_cdrom(int track, int num_loops, int start_frame, int end_frame);
+ virtual void play_cdrom(int track, int num_loops, int start_frame, int end_frame) = 0;
// Stop cdrom audio track
- virtual void stop_cdrom();
+ virtual void stop_cdrom() = 0;
// Update cdrom audio status
- virtual void update_cdrom();
+ virtual void update_cdrom() = 0;
// Quit
virtual void quit() = 0;