aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.h
diff options
context:
space:
mode:
authorMax Horn2003-10-02 22:42:03 +0000
committerMax Horn2003-10-02 22:42:03 +0000
commit3f55f2669d560489ee017d64f5bdd0f785cf796e (patch)
treebd8b3bc560b347a0ef58c7b23431e92142aeea50 /scumm/sound.h
parent68810ac106ba538e7fb697e0f7fa6eb699a4c927 (diff)
downloadscummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.tar.gz
scummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.tar.bz2
scummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.zip
renamed class Scumm to ScummEngine (consisten with other engine names; also makes room for a potential 'Scumm' namespace)
svn-id: r10549
Diffstat (limited to 'scumm/sound.h')
-rw-r--r--scumm/sound.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/sound.h b/scumm/sound.h
index 0d745dedfb..45e117872b 100644
--- a/scumm/sound.h
+++ b/scumm/sound.h
@@ -27,7 +27,7 @@
class Bundle;
class DigitalTrackInfo;
class File;
-class Scumm;
+class ScummEngine;
struct MP3OffsetTable;
@@ -93,7 +93,7 @@ protected:
DigitalTrackInfo *_track_info[CACHE_TRACKS];
int _current_cache;
- Scumm *_scumm;
+ ScummEngine *_scumm;
public:
int32 _bundleMusicPosition;
@@ -106,10 +106,10 @@ public:
// update iMuse/iMuseDigi/Player_v2/SoundMIxer, too
int16 _sound_volume_master, _sound_volume_music, _sound_volume_sfx;
- Bundle *_bundle; // FIXME: should be protected but is used by Scumm::askForDisk
+ Bundle *_bundle; // FIXME: should be protected but is used by ScummEngine::askForDisk
public:
- Sound(Scumm *parent);
+ Sound(ScummEngine *parent);
~Sound();
void addSoundToQueue(int sound);
void addSoundToQueue2(int sound);
@@ -131,7 +131,7 @@ public:
void playBundleMusic(const char *song);
void pauseBundleMusic(bool state);
- void bundleMusicHandler(Scumm *scumm);
+ void bundleMusicHandler(ScummEngine *scumm);
void stopBundleMusic();
void playBundleSound(char *sound, PlayingSoundHandle *handle);