Skip to content

Commit

Permalink
GLK: SCOTT: Fix inverted condition
Browse files Browse the repository at this point in the history
  • Loading branch information
angstsmurf authored and dreammaster committed Feb 24, 2023
1 parent b3b438d commit ba1836a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/glk/scott/load_game.cpp
Expand Up @@ -252,7 +252,7 @@ void loadGameFile(Common::SeekableReadStream *f) {
break;
}

if (!(_G(_game)->_subType & (C64 | MYSTERIOUS))) {
if ((_G(_game)->_subType & (C64 | MYSTERIOUS)) == (MYSTERIOUS | C64)) {
mysterious64Sysmess();
}

Expand Down

0 comments on commit ba1836a

Please sign in to comment.