diff options
author | uruk | 2013-07-24 18:14:10 +0200 |
---|---|---|
committer | uruk | 2013-07-24 18:14:10 +0200 |
commit | f035622b14966e3af0a1fe53b63619ee29591e3a (patch) | |
tree | c5a823a3b0f84502252b197bc74ef95b3be97582 /engines | |
parent | cc6197d77f9fc97243473f59cda144f95c0b25c3 (diff) | |
download | scummvm-rg350-f035622b14966e3af0a1fe53b63619ee29591e3a.tar.gz scummvm-rg350-f035622b14966e3af0a1fe53b63619ee29591e3a.tar.bz2 scummvm-rg350-f035622b14966e3af0a1fe53b63619ee29591e3a.zip |
AVALANCHE: Get rid of parts of the engine I don't use yet.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/avalanche.cpp | 10 | ||||
-rw-r--r-- | engines/avalanche/avalanche.h | 3 |
2 files changed, 2 insertions, 11 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp index f5013cd338..55bbf33498 100644 --- a/engines/avalanche/avalanche.cpp +++ b/engines/avalanche/avalanche.cpp @@ -102,6 +102,8 @@ Common::Platform AvalancheEngine::getPlatform() const { return _platform; } + + bool AvalancheEngine::hasFeature(EngineFeature f) const { return (f == kSupportsRTL) || (f == kSupportsLoadingDuringRuntime) || (f == kSupportsSavingDuringRuntime); } @@ -110,15 +112,7 @@ const char *AvalancheEngine::getCopyrightString() const { return "Copyright (c) 1994-1995 Mike, Mark and Thomas Thurman."; } -Common::String AvalancheEngine::getSavegameFilename(int slot) { - return _targetName + Common::String::format("-%02d.SAV", slot); -} -void AvalancheEngine::syncSoundSettings() { - Engine::syncSoundSettings(); - - // _sound->syncVolume(); -} void AvalancheEngine::updateEvents() { Common::Event event; diff --git a/engines/avalanche/avalanche.h b/engines/avalanche/avalanche.h index c6c4b2c618..99540b4a18 100644 --- a/engines/avalanche/avalanche.h +++ b/engines/avalanche/avalanche.h @@ -107,9 +107,6 @@ public: bool hasFeature(EngineFeature f) const; const char *getCopyrightString() const; - Common::String getSavegameFilename(int slot); - void syncSoundSettings(); - void updateEvents(); protected: |