TUCKER: Add CursorStyle and CursorState enums

This commit is contained in:
Adrian Frühwirth 2018-03-02 17:26:12 +01:00
parent 487baf6f8e
commit dce8a98a18
6 changed files with 76 additions and 60 deletions

View file

@ -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() {