aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/tony.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-09 00:52:38 +0200
committerStrangerke2012-06-09 00:52:38 +0200
commitc52aca5ac407c498eb0a287697199a97f7c18bae (patch)
tree652dca12bd5567505faf45595dbae83942dd050f /engines/tony/tony.cpp
parent83f1cad02be38e56161350aabc29176f24c901a0 (diff)
downloadscummvm-rg350-c52aca5ac407c498eb0a287697199a97f7c18bae.tar.gz
scummvm-rg350-c52aca5ac407c498eb0a287697199a97f7c18bae.tar.bz2
scummvm-rg350-c52aca5ac407c498eb0a287697199a97f7c18bae.zip
TONY: Rename more globals
Diffstat (limited to 'engines/tony/tony.cpp')
-rw-r--r--engines/tony/tony.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp
index 7f7930c5d7..eab52c6b4b 100644
--- a/engines/tony/tony.cpp
+++ b/engines/tony/tony.cpp
@@ -153,23 +153,23 @@ Common::ErrorCode TonyEngine::init() {
_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;
+ 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;