diff options
author | Marisa-Chan | 2014-03-05 18:47:52 +0700 |
---|---|---|
committer | Marisa-Chan | 2014-03-05 18:47:52 +0700 |
commit | 26d923e354d22a3d8aeb007f4d6f1e5dc669efb4 (patch) | |
tree | eb30799d575707a2ade9e6f7c025acb7c21634cb | |
parent | 5f92871a9c76d5f8bda74c10ef304c3ec1a328f5 (diff) | |
download | scummvm-rg350-26d923e354d22a3d8aeb007f4d6f1e5dc669efb4.tar.gz scummvm-rg350-26d923e354d22a3d8aeb007f4d6f1e5dc669efb4.tar.bz2 scummvm-rg350-26d923e354d22a3d8aeb007f4d6f1e5dc669efb4.zip |
ZVISION: Fix incompatibility of puzzle flugs with original saves.
-rw-r--r-- | engines/zvision/puzzle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/puzzle.h b/engines/zvision/puzzle.h index e06b087aca..4d50756b87 100644 --- a/engines/zvision/puzzle.h +++ b/engines/zvision/puzzle.h @@ -65,8 +65,8 @@ struct Puzzle { enum StateFlags { ONCE_PER_INST = 0x01, - DO_ME_NOW = 0x02, // Somewhat useless flag since anything that needs to be done immediately has no criteria - DISABLED = 0x04 + DISABLED = 0x02, + DO_ME_NOW = 0x04 }; uint32 key; |