diff options
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/puzzle.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/engines/zvision/puzzle.h b/engines/zvision/puzzle.h index 75ea9541d2..97b839f9a7 100644 --- a/engines/zvision/puzzle.h +++ b/engines/zvision/puzzle.h @@ -74,13 +74,6 @@ struct Puzzle { // This has to be list of pointers because ResultAction is abstract Common::List<ResultAction *> resultActions; uint flags; - - // Used by the ScriptManager to allow unique-ification of _referenceTable - // The unique-ification is done by sorting, then iterating and removing duplicates - // The sort uses operator< - inline bool operator<(const Puzzle &other) const { - return key < other.key; - } }; } // End of namespace ZVision |