Resolved a FIXME with getSciLanguage(), by creating a separate setter. Also, some camelCase changes
svn-id: r49568
This commit is contained in:
parent
a635b94823
commit
93f33c7dab
10 changed files with 44 additions and 36 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue