aboutsummaryrefslogtreecommitdiff
path: root/engines/engine.cpp
diff options
context:
space:
mode:
authorMax Horn2008-11-03 18:32:16 +0000
committerMax Horn2008-11-03 18:32:16 +0000
commit55c10e0ec6f2d6ea7c58ec1e4b74e5552fda5ddc (patch)
tree4df4d54fc783f837004ab2419c90aaf5c7f5930a /engines/engine.cpp
parent646666125232064f2c4657c4025433b243e42af9 (diff)
downloadscummvm-rg350-55c10e0ec6f2d6ea7c58ec1e4b74e5552fda5ddc.tar.gz
scummvm-rg350-55c10e0ec6f2d6ea7c58ec1e4b74e5552fda5ddc.tar.bz2
scummvm-rg350-55c10e0ec6f2d6ea7c58ec1e4b74e5552fda5ddc.zip
Patch #2122869: ALL: Common load dialog
svn-id: r34883
Diffstat (limited to 'engines/engine.cpp')
-rw-r--r--engines/engine.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp
index d5d5498384..4bbe2d069f 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -255,6 +255,26 @@ void Engine::syncSoundSettings() {
_mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, soundVolumeSpeech);
}
+int Engine::loadGameState(int slot) {
+ // Do nothing by default
+ return 0;
+}
+
+bool Engine::canLoadGameStateCurrently() {
+ // Do not allow loading by default
+ return false;
+}
+
+int Engine::saveGameState(int slot) {
+ // Do nothing by default
+ return 0;
+}
+
+bool Engine::canSaveGameStateCurrently() {
+ // Do not allow saving by default
+ return false;
+}
+
void Engine::quitGame() {
Common::Event event;