diff options
author | Marisa-Chan | 2013-10-25 20:47:36 +0000 |
---|---|---|
committer | Marisa-Chan | 2013-10-25 20:47:36 +0000 |
commit | 6ace820da623b8579972ae58c50ec782dfcf2589 (patch) | |
tree | aadf67e1d9460f15262c2b4f2f51d7f9f3043be0 /engines/zvision/puzzle.h | |
parent | 4d02fe42fdbddb4fb6f5d97611b31410c170082d (diff) | |
download | scummvm-rg350-6ace820da623b8579972ae58c50ec782dfcf2589.tar.gz scummvm-rg350-6ace820da623b8579972ae58c50ec782dfcf2589.tar.bz2 scummvm-rg350-6ace820da623b8579972ae58c50ec782dfcf2589.zip |
ZVISION: Remove field "flags" from puzzle structure.
Diffstat (limited to 'engines/zvision/puzzle.h')
-rw-r--r-- | engines/zvision/puzzle.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/zvision/puzzle.h b/engines/zvision/puzzle.h index 1b30829462..c02f60c8f0 100644 --- a/engines/zvision/puzzle.h +++ b/engines/zvision/puzzle.h @@ -32,7 +32,7 @@ namespace ZVision { struct Puzzle { - Puzzle() : key(0), flags(0) {} + Puzzle() : key(0) {} ~Puzzle() { for (Common::List<ResultAction *>::iterator iter = resultActions.begin(); iter != resultActions.end(); ++iter) { @@ -73,7 +73,6 @@ struct Puzzle { Common::List<Common::List <CriteriaEntry> > criteriaList; // This has to be list of pointers because ResultAction is abstract Common::List<ResultAction *> resultActions; - uint flags; bool addedBySetState; }; |