aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/puzzle.h
diff options
context:
space:
mode:
authorMarisa-Chan2013-10-20 18:39:06 +0000
committerMarisa-Chan2013-10-20 18:39:06 +0000
commit25834faf0738ae6c33819b196fdfb8ab5e8f1888 (patch)
treefb4c9fa0883f24d44a9c76926cf99be32c908f9e /engines/zvision/puzzle.h
parentaefa58f5a4470b1ba2e275c62aa1a7a0cec76539 (diff)
downloadscummvm-rg350-25834faf0738ae6c33819b196fdfb8ab5e8f1888.tar.gz
scummvm-rg350-25834faf0738ae6c33819b196fdfb8ab5e8f1888.tar.bz2
scummvm-rg350-25834faf0738ae6c33819b196fdfb8ab5e8f1888.zip
ZVISION: Style modifing by astyle.
Diffstat (limited to 'engines/zvision/puzzle.h')
-rw-r--r--engines/zvision/puzzle.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/zvision/puzzle.h b/engines/zvision/puzzle.h
index 1e730365dc..2eea52f80b 100644
--- a/engines/zvision/puzzle.h
+++ b/engines/zvision/puzzle.h
@@ -42,17 +42,17 @@ struct Puzzle {
/** How criteria should be decided */
enum CriteriaOperator {
- EQUAL_TO,
- NOT_EQUAL_TO,
- GREATER_THAN,
- LESS_THAN
+ EQUAL_TO,
+ NOT_EQUAL_TO,
+ GREATER_THAN,
+ LESS_THAN
};
/** Criteria for a Puzzle result to be fired */
struct CriteriaEntry {
/** The key of a global state */
uint32 key;
- /**
+ /**
* What we're comparing the value of the global state against
* This can either be a pure value or it can be the key of another global state
*/
@@ -64,9 +64,9 @@ 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
+ ONCE_PER_INST = 0x01,
+ DO_ME_NOW = 0x02, // Somewhat useless flag since anything that needs to be done immediately has no criteria
+ DISABLED = 0x04
};
uint32 key;