aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/tony.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2012-06-17 15:01:13 +1000
committerPaul Gilbert2012-06-17 15:01:13 +1000
commitb554063d3018a39f328f0cd818b03546918c60d6 (patch)
treeb7d8584ba72cc799b0baac27e1a3f975f23ebc58 /engines/tony/tony.cpp
parentd0c649721276e289745124f28005c08d61381070 (diff)
downloadscummvm-rg350-b554063d3018a39f328f0cd818b03546918c60d6.tar.gz
scummvm-rg350-b554063d3018a39f328f0cd818b03546918c60d6.tar.bz2
scummvm-rg350-b554063d3018a39f328f0cd818b03546918c60d6.zip
TONY: Moved global initialisations out of TonyEngine and into Globals class
Diffstat (limited to 'engines/tony/tony.cpp')
-rw-r--r--engines/tony/tony.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp
index 094e1bd038..91204763b3 100644
--- a/engines/tony/tony.cpp
+++ b/engines/tony/tony.cpp
@@ -167,24 +167,6 @@ Common::ErrorCode TonyEngine::init() {
// Allocate space for thumbnails when saving the game
_curThumbnail = new uint16[160 * 120];
- // Set up global defaults
- GLOBALS._bCfgInvLocked = false;
- GLOBALS._bCfgInvNoScroll = false;
- GLOBALS._bCfgTimerizedText = true;
- GLOBALS._bCfgInvUp = false;
- GLOBALS._bCfgAnni30 = false;
- GLOBALS._bCfgAntiAlias = false;
- GLOBALS._bCfgTransparence = true;
- GLOBALS._bCfgInterTips = true;
- GLOBALS._bCfgSottotitoli = true;
- GLOBALS._nCfgTonySpeed = 3;
- GLOBALS._nCfgTextSpeed = 5;
- GLOBALS._bCfgDubbing = true;
- GLOBALS._bCfgMusic = true;
- GLOBALS._bCfgSFX = true;
- GLOBALS._nCfgDubbingVolume = 10;
- GLOBALS._nCfgMusicVolume = 7;
- GLOBALS._nCfgSFXVolume = 10;
_bQuitNow = false;
return Common::kNoError;