aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2013-10-04 17:16:54 +0200
committerStrangerke2013-10-04 17:16:54 +0200
commit19cc272763bd4094508c9ec4862403aef8626dae (patch)
tree39dd66d142973b18548d41457550582b815c33c0 /engines
parent9b9462bcee4031f4222ba4649f8c8434a1bd9111 (diff)
downloadscummvm-rg350-19cc272763bd4094508c9ec4862403aef8626dae.tar.gz
scummvm-rg350-19cc272763bd4094508c9ec4862403aef8626dae.tar.bz2
scummvm-rg350-19cc272763bd4094508c9ec4862403aef8626dae.zip
AVALANCHE: Remove s_engine
Diffstat (limited to 'engines')
-rw-r--r--engines/avalanche/avalanche.cpp3
-rw-r--r--engines/avalanche/avalanche.h2
2 files changed, 0 insertions, 5 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp
index 26d7671078..29045d70a2 100644
--- a/engines/avalanche/avalanche.cpp
+++ b/engines/avalanche/avalanche.cpp
@@ -43,11 +43,8 @@
namespace Avalanche {
-AvalancheEngine *AvalancheEngine::s_Engine = 0;
-
AvalancheEngine::AvalancheEngine(OSystem *syst, const AvalancheGameDescription *gd) : Engine(syst), _gameDescription(gd), _fxHidden(false), _interrogation(0) {
_system = syst;
- s_Engine = this;
_console = new AvalancheConsole(this);
_rnd = new Common::RandomSource("avalanche");
diff --git a/engines/avalanche/avalanche.h b/engines/avalanche/avalanche.h
index d68d837c2c..4cb78f7e25 100644
--- a/engines/avalanche/avalanche.h
+++ b/engines/avalanche/avalanche.h
@@ -119,8 +119,6 @@ protected:
Common::Error run();
private:
- static AvalancheEngine *s_Engine;
-
AvalancheConsole *_console;
Common::Platform _platform;