diff options
author | hondew <pokehondew@gmail.com> | 2019-02-22 16:27:49 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-02-28 21:21:56 -0600 |
commit | 6a4202cdbd139a4c81609748fd2df522eff93e56 (patch) | |
tree | cd90c094af8d041cc0404648116e6ce8c8bc777b | |
parent | 1dc0d346d949f858e2aae602ebf60eb81bf6b7d7 (diff) |
tidied lucky flags
-rw-r--r-- | include/slot_machine.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/slot_machine.h b/include/slot_machine.h index bd0af49af..84622d914 100644 --- a/include/slot_machine.h +++ b/include/slot_machine.h @@ -6,14 +6,14 @@ #define REEL_TAG_HEIGHT 24 // Lucky Flags -#define LUCKY_BIAS_REPLAY 0x0001 -#define LUCKY_BIAS_CHERRY 0x0002 -#define LUCKY_BIAS_LOTAD 0x0004 -#define LUCKY_BIAS_AZURILL 0x0008 -#define LUCKY_BIAS_POWER 0x0010 -#define LUCKY_BIAS_REELTIME 0x0020 -#define LUCKY_BIAS_MIXED_777 0x0040 -#define LUCKY_BIAS_777 0x0080 +#define LUCKY_BIAS_REPLAY (1 << 0) +#define LUCKY_BIAS_CHERRY (1 << 1) +#define LUCKY_BIAS_LOTAD (1 << 2) +#define LUCKY_BIAS_AZURILL (1 << 3) +#define LUCKY_BIAS_POWER (1 << 4) +#define LUCKY_BIAS_REELTIME (1 << 5) +#define LUCKY_BIAS_MIXED_777 (1 << 6) +#define LUCKY_BIAS_777 (1 << 7) // Rows #define SLOT_TOP_ROW 0x0001 |