aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/sound.h
diff options
context:
space:
mode:
authorNipun Garg2019-07-12 02:20:21 +0530
committerEugene Sandulenko2019-09-03 17:17:17 +0200
commita510482d64d7f77c3a0f9500cfd137d897524a03 (patch)
tree4c1ef5557d69e9d59b00e72c4098ec0c1f09ad76 /engines/hdb/sound.h
parentd5a779168f2110f4041f78d0f4d3dc5145d9b5ce (diff)
downloadscummvm-rg350-a510482d64d7f77c3a0f9500cfd137d897524a03.tar.gz
scummvm-rg350-a510482d64d7f77c3a0f9500cfd137d897524a03.tar.bz2
scummvm-rg350-a510482d64d7f77c3a0f9500cfd137d897524a03.zip
HDB: Add stubs in Sound and Input
Diffstat (limited to 'engines/hdb/sound.h')
-rw-r--r--engines/hdb/sound.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h
index 8e7b0525a8..895f6d9506 100644
--- a/engines/hdb/sound.h
+++ b/engines/hdb/sound.h
@@ -1391,14 +1391,23 @@ public:
void save(Common::OutSaveFile *out);
void loadSaveFile(Common::InSaveFile *in);
void clearPersistent();
+ void setMusicVolume(int value) {
+ debug(9, "STUB: Add Music System Variables");
+ }
int getMusicVolume() {
debug(9, "STUB: Add Music System Variables");
return 1;
}
+ void setSFXVolume(int value) {
+ debug(9, "STUB: Add Music System Variables");
+ }
int getSFXVolume() {
debug(9, "STUB: Add Music System Variables");
return 1;
}
+ void setVoiceStatus(int value) {
+ debug(9, "STUB: Add Music System Variables");
+ }
int getVoiceStatus() {
debug(9, "STUB: Add Music System Variables");
return 1;
@@ -1411,6 +1420,9 @@ public:
bool songPlaying(SoundType song);
bool stopChannel(int channel);
void stopMusic();
+ bool freeSound(int index);
+
+ SoundType whatSongIsPlaying();
void markSoundCacheFreeable();
};