From 19ae43aa18b39882c99de1b65742218c09acdf4c Mon Sep 17 00:00:00 2001 From: uruk Date: Wed, 15 Jan 2014 23:04:59 +0100 Subject: AVALANCHE: Move Clock to dedicated files. --- engines/avalanche/avalanche.h | 1 + 1 file changed, 1 insertion(+) (limited to 'engines/avalanche/avalanche.h') diff --git a/engines/avalanche/avalanche.h b/engines/avalanche/avalanche.h index 7392bf3fae..ef2338e629 100644 --- a/engines/avalanche/avalanche.h +++ b/engines/avalanche/avalanche.h @@ -42,6 +42,7 @@ #include "avalanche/closing.h" #include "avalanche/sound.h" #include "avalanche/nim.h" +#include "avalanche/clock.h" #include "common/serializer.h" -- cgit v1.2.3 From 2479a53d650819c5d728ea7ac7fd5847cac5e87a Mon Sep 17 00:00:00 2001 From: uruk Date: Wed, 22 Jan 2014 03:34:45 +0100 Subject: AVALANCHE: Move kTune and TuneType to Dialogs. --- engines/avalanche/avalanche.h | 1 - 1 file changed, 1 deletion(-) (limited to 'engines/avalanche/avalanche.h') diff --git a/engines/avalanche/avalanche.h b/engines/avalanche/avalanche.h index ef2338e629..5ad3114f23 100644 --- a/engines/avalanche/avalanche.h +++ b/engines/avalanche/avalanche.h @@ -173,7 +173,6 @@ public: static const char kSpludwicksOrder[3]; static const uint16 kNotes[12]; - static const TuneType kTune; bool _holdLeftMouse; -- cgit v1.2.3 From 681bc68cf6431a7519795aa3bc7dcd215f147d4c Mon Sep 17 00:00:00 2001 From: uruk Date: Wed, 22 Jan 2014 18:00:44 +0100 Subject: AVALANCHE: Remove unused code. --- engines/avalanche/avalanche.h | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'engines/avalanche/avalanche.h') diff --git a/engines/avalanche/avalanche.h b/engines/avalanche/avalanche.h index 5ad3114f23..fe13fa8d9e 100644 --- a/engines/avalanche/avalanche.h +++ b/engines/avalanche/avalanche.h @@ -128,43 +128,6 @@ private: AvalancheConsole *_console; Common::Platform _platform; -#if 0 - struct { - byte _operation; - uint16 _skellern; - byte _contents[1000]; - } _storage; - - static const int16 kRunShootemup = 1, kRunDosshell = 2, kRunGhostroom = 3, kRunGolden = 4; - static const int16 kReset = 0; - - static const bool kJsb = true, kNoJsb = false, kBflight = true, kNoBflight = false; - - // From bootstrp: - enum Elm {kNormal, kMusical, kElmpoyten, kRegi}; - - Common::String _argsWithNoFilename; - byte _originalMode; - byte *_old1c; - Common::String _segofs; - int32 _soundcard, _speed, _baseaddr, _irq, _dma; - bool _zoomy; - - void run(Common::String what, bool withJsb, bool withBflight, Elm how); - void bFlightOn(); - void bFlightOff(); - Common::String elmToStr(Elm how); - bool keyPressed(); - void flushBuffer(); - void dosShell(); - void bFlight(); - Common::String commandCom(); - void explain(byte error); - void cursorOff(); - void cursorOn(); - void quit(); -#endif - public: // For Thinkabout: static const bool kThing = true; -- cgit v1.2.3