Resolved a FIXME with getSciLanguage(), by creating a separate setter. Also, some camelCase changes

svn-id: r49568
This commit is contained in:
Filippos Karapetis 2010-06-10 11:18:10 +00:00
parent a635b94823
commit 93f33c7dab
10 changed files with 44 additions and 36 deletions

View file

@ -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