aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v2.h
diff options
context:
space:
mode:
authorMax Horn2003-06-27 00:10:17 +0000
committerMax Horn2003-06-27 00:10:17 +0000
commitc10905b975a2bf929b1e053525907663879fdb7f (patch)
tree85c0301a0fced10338556736a43eed668fcd026b /scumm/player_v2.h
parentaa19687a4c9affcdb03ae76e269766dd6237ca4c (diff)
downloadscummvm-rg350-c10905b975a2bf929b1e053525907663879fdb7f.tar.gz
scummvm-rg350-c10905b975a2bf929b1e053525907663879fdb7f.tar.bz2
scummvm-rg350-c10905b975a2bf929b1e053525907663879fdb7f.zip
cleanup
svn-id: r8662
Diffstat (limited to 'scumm/player_v2.h')
-rw-r--r--scumm/player_v2.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/scumm/player_v2.h b/scumm/player_v2.h
index 32ec8345f9..7680754c82 100644
--- a/scumm/player_v2.h
+++ b/scumm/player_v2.h
@@ -80,13 +80,13 @@ public:
void startSound(int nr, byte *data);
void stopSound(int nr);
void stopAllSounds();
- int getSoundStatus(int nr);
- int getMusicTimer();
+ bool getSoundStatus(int nr) const;
+ int getMusicTimer() const;
private:
+ bool _isV3Game;
SoundMixer *_mixer;
- Scumm *_scumm;
-
+ OSystem *_system;
bool _pcjr;
int _header_len;
@@ -116,7 +116,6 @@ private:
byte *next_data;
byte *retaddr;
- OSystem *_system;
void *_mutex;
void mutex_up() { _system->lock_mutex (_mutex); }
void mutex_down() { _system->unlock_mutex (_mutex); }