TUCKER: Add CursorStyle and CursorState enums
This commit is contained in:
parent
487baf6f8e
commit
dce8a98a18
6 changed files with 76 additions and 60 deletions
|
@ -119,11 +119,11 @@ Common::Error TuckerEngine::saveGameState(int num, const Common::String &descrip
|
|||
|
||||
|
||||
bool TuckerEngine::canLoadGameStateCurrently() {
|
||||
return !_player && _cursorType < 2;
|
||||
return !_player && _cursorState != kCursorStateDisabledHidden;
|
||||
}
|
||||
|
||||
bool TuckerEngine::canSaveGameStateCurrently() {
|
||||
return !_player && _cursorType < 2;
|
||||
return !_player && _cursorState != kCursorStateDisabledHidden;
|
||||
}
|
||||
|
||||
bool TuckerEngine::existsSavegame() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue