aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/detection.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-10 11:18:10 +0000
committerFilippos Karapetis2010-06-10 11:18:10 +0000
commit93f33c7dab009e8ff82fac195e7b6d02e66ab755 (patch)
tree6e96c80da2d5167d781a50f5c4b81b57af3a99b0 /engines/sci/detection.cpp
parenta635b948239fbbd1ce302fb9d5eac943e90ca7ee (diff)
downloadscummvm-rg350-93f33c7dab009e8ff82fac195e7b6d02e66ab755.tar.gz
scummvm-rg350-93f33c7dab009e8ff82fac195e7b6d02e66ab755.tar.bz2
scummvm-rg350-93f33c7dab009e8ff82fac195e7b6d02e66ab755.zip
Resolved a FIXME with getSciLanguage(), by creating a separate setter. Also, some camelCase changes
svn-id: r49568
Diffstat (limited to 'engines/sci/detection.cpp')
-rw-r--r--engines/sci/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp
index f36bae2d6d..579414b3ea 100644
--- a/engines/sci/detection.cpp
+++ b/engines/sci/detection.cpp
@@ -673,11 +673,11 @@ Common::Error SciEngine::saveGameState(int slot, const char *desc) {
}
bool SciEngine::canLoadGameStateCurrently() {
- return !_gamestate->execution_stack_base;
+ return !_gamestate->executionStackBase;
}
bool SciEngine::canSaveGameStateCurrently() {
- return !_gamestate->execution_stack_base;
+ return !_gamestate->executionStackBase;
}
} // End of namespace Sci