summaryrefslogtreecommitdiff
path: root/include/contest.h
diff options
context:
space:
mode:
authorPhlosioneer <mattmdrr2@gmail.com>2019-04-04 17:05:46 -0400
committerPhlosioneer <mattmdrr2@gmail.com>2019-04-04 17:05:46 -0400
commit1360b3a477f1107785900cd0c4e73ebf018f058c (patch)
treec050216422dc6ebe569b3926b85cb07d9cece8df /include/contest.h
parent50da52c29b3ee075c43f9832aaa4a7b8848e0ec7 (diff)
RGB Constants
Diffstat (limited to 'include/contest.h')
-rw-r--r--include/contest.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/include/contest.h b/include/contest.h
index 1fba54885..a4e209bcb 100644
--- a/include/contest.h
+++ b/include/contest.h
@@ -7,13 +7,16 @@
#define APPLAUSE_METER_SIZE 5
#define CONTEST_TURN_COUNT 5
-#define CONTEST_DEBUG_MODE_OFF 0
-// Prints the totalPoints value for each contestant.
-#define CONTEST_DEBUG_MODE_PRINT_POINT_TOTAL 1
-// Prints the ContestResourcesField1C::unk_C value as a bitstring for each contestant.
-#define CONTEST_DEBUG_MODE_PRINT_UNK_C 2
-// Prints the ContestResourcesField1C::unk_D value as a bitstring for each contestant.
-#define CONTEST_DEBUG_MODE_PRINT_UNK_D 3
+enum
+{
+ CONTEST_DEBUG_MODE_OFF,
+ // Prints the totalPoints value for each contestant.
+ CONTEST_DEBUG_MODE_PRINT_POINT_TOTAL,
+ // Prints the ContestResourcesField1C::unk_C value as a bitstring for each contestant.
+ CONTEST_DEBUG_MODE_PRINT_UNK_C,
+ // Prints the ContestResourcesField1C::unk_D value as a bitstring for each contestant.
+ CONTEST_DEBUG_MODE_PRINT_UNK_D
+};
#define LINK_CONTEST_FLAG_IS_LINK (1 << 0)
#define LINK_CONTEST_FLAG_IS_WIRELESS (1 << 1)