aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/sound.h
diff options
context:
space:
mode:
authorStrangerke2012-12-25 22:48:11 +0100
committerStrangerke2012-12-25 22:48:11 +0100
commitf89001d75c73750a67ff6c8bc392c5b526fb803c (patch)
treeaed7398a7da6ba4346d27aeca7f4eadc1426ec8f /engines/hopkins/sound.h
parent657dfdaa6d99c7173094f4d85a75ca67ea0c46a4 (diff)
downloadscummvm-rg350-f89001d75c73750a67ff6c8bc392c5b526fb803c.tar.gz
scummvm-rg350-f89001d75c73750a67ff6c8bc392c5b526fb803c.tar.bz2
scummvm-rg350-f89001d75c73750a67ff6c8bc392c5b526fb803c.zip
HOPKINS: Renaming
Diffstat (limited to 'engines/hopkins/sound.h')
-rw-r--r--engines/hopkins/sound.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/hopkins/sound.h b/engines/hopkins/sound.h
index 7eb5cc600c..c67e9e0987 100644
--- a/engines/hopkins/sound.h
+++ b/engines/hopkins/sound.h
@@ -119,11 +119,11 @@ public:
int OLD_SOUNDVOL;
int OLD_MUSICVOL;
int OLD_VOICEVOL;
- bool SOUNDOFF;
- bool MUSICOFF;
+ bool _soundOffFl;
+ bool _musicOff;
bool _voiceOffFl;
bool _textOffFl;
- bool SOUND_FLAG;
+ bool _soundFl;
bool VBL_MERDE;
int SOUND_NUM;
bool MOD_FLAG;
@@ -147,15 +147,15 @@ public:
void WSOUND(int soundNumber);
void WSOUND_OFF();
void PLAY_MOD(const Common::String &file);
- void LOAD_MUSIC(const Common::String &file);
- void PLAY_MUSIC();
- void STOP_MUSIC();
- void DEL_MUSIC();
+ void loadMusic(const Common::String &file);
+ void playMusic();
+ void stopMusic();
+ void delMusic();
bool mixVoice(int voiceId, int voiceMode);
void DEL_SAMPLE(int soundIndex);
- void PLAY_SOUND(const Common::String &file);
+ void playSound(const Common::String &file);
void PLAY_SOUND2(const Common::String &file2);
void MODSetSampleVolume();
void MODSetVoiceVolume();
@@ -163,7 +163,7 @@ public:
void loadSample(int wavIndex, const Common::String &file);
void PLAY_SAMPLE(int wavIndex, int voiceMode);
void PLAY_SAMPLE2(int idx);
- void PLAY_WAV(int wavIndex);
+ void playWav(int wavIndex);
void syncSoundSettings();
void updateScummVMSoundSettings();