aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/tony.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-10 22:02:31 +0200
committerStrangerke2012-06-10 22:34:08 +0200
commit2b02a45ce16960644e1d5e297066f8040cd48cbc (patch)
tree00869ee46a56bc87cd4460224c5706123a1c4981 /engines/tony/tony.cpp
parentf64700b27fa8f083697a16459e8237bf6c48f1dc (diff)
downloadscummvm-rg350-2b02a45ce16960644e1d5e297066f8040cd48cbc.tar.gz
scummvm-rg350-2b02a45ce16960644e1d5e297066f8040cd48cbc.tar.bz2
scummvm-rg350-2b02a45ce16960644e1d5e297066f8040cd48cbc.zip
TONY: Rename variables in globals.h
Diffstat (limited to 'engines/tony/tony.cpp')
-rw-r--r--engines/tony/tony.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp
index 0c0bcf331a..2b9d8fbc20 100644
--- a/engines/tony/tony.cpp
+++ b/engines/tony/tony.cpp
@@ -517,9 +517,9 @@ void TonyEngine::playProcess(CORO_PARAM, const void *param) {
// and kill the scheudler and all the processes, including this one
for (;;) {
// If a savegame needs to be loaded, then do so
- if (_vm->_loadSlotNumber != -1 && GLOBALS.GfxEngine != NULL) {
+ if (_vm->_loadSlotNumber != -1 && GLOBALS._gfxEngine != NULL) {
_ctx->fn = getSaveStateFileName(_vm->_loadSlotNumber);
- CORO_INVOKE_1(GLOBALS.GfxEngine->loadState, _ctx->fn);
+ CORO_INVOKE_1(GLOBALS._gfxEngine->loadState, _ctx->fn);
_vm->_loadSlotNumber = -1;
}
@@ -605,10 +605,10 @@ uint32 TonyEngine::getTime() {
}
bool TonyEngine::canLoadGameStateCurrently() {
- return GLOBALS.GfxEngine != NULL && GLOBALS.GfxEngine->canLoadSave();
+ return GLOBALS._gfxEngine != NULL && GLOBALS._gfxEngine->canLoadSave();
}
bool TonyEngine::canSaveGameStateCurrently() {
- return GLOBALS.GfxEngine != NULL && GLOBALS.GfxEngine->canLoadSave();
+ return GLOBALS._gfxEngine != NULL && GLOBALS._gfxEngine->canLoadSave();
}
Common::Error TonyEngine::loadGameState(int slot) {
@@ -617,13 +617,13 @@ Common::Error TonyEngine::loadGameState(int slot) {
}
Common::Error TonyEngine::saveGameState(int slot, const Common::String &desc) {
- if (!GLOBALS.GfxEngine)
+ if (!GLOBALS._gfxEngine)
return Common::kUnknownError;
RMSnapshot s;
- s.grabScreenshot(*GLOBALS.GfxEngine, 4, _curThumbnail);
+ s.grabScreenshot(*GLOBALS._gfxEngine, 4, _curThumbnail);
- GLOBALS.GfxEngine->saveState(getSaveStateFileName(slot), (byte *)_curThumbnail, desc);
+ GLOBALS._gfxEngine->saveState(getSaveStateFileName(slot), (byte *)_curThumbnail, desc);
return Common::kNoError;
}