aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/hdb/sound.cpp8
-rw-r--r--engines/hdb/sound.h2
2 files changed, 10 insertions, 0 deletions
diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp
index 5f5cf86236..cdda643417 100644
--- a/engines/hdb/sound.cpp
+++ b/engines/hdb/sound.cpp
@@ -29,6 +29,14 @@ bool Sound::init() {
return true;
}
+void Sound::save(Common::OutSaveFile *out) {
+ warning("STUB: Sound::save()");
+}
+
+void Sound::loadSaveFile(Common::InSaveFile *in) {
+ warning("STUB: Sound::loadSaveFile()");
+}
+
bool Sound::playSound(int index) {
debug(9, "STUB: Play Sound");
return true;
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h
index 65c61f2962..8d0d6baef4 100644
--- a/engines/hdb/sound.h
+++ b/engines/hdb/sound.h
@@ -1388,6 +1388,8 @@ class Sound {
public:
bool init();
+ void save(Common::OutSaveFile *out);
+ void loadSaveFile(Common::InSaveFile *in);
int getMusicVolume() {
debug(9, "STUB: Add Music System Variables");
return 1;