diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-10 17:18:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 17:18:09 -0400 |
commit | 8b95e1964b174d664abcb5864549feea83cfebfe (patch) | |
tree | 60b7345fd6c36dc813d5de8556a54d9cabd42cd3 /include/constants | |
parent | 078c341b2b86d743c202a3968dbb5dad106a2fac (diff) | |
parent | 4bf43311f0b2cf78cb69b71485fce61ed8c21786 (diff) |
Merge pull request #1121 from GriffinRichards/doc-roulette
Document roulette
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/coins.h | 1 | ||||
-rw-r--r-- | include/constants/roulette.h | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/constants/coins.h b/include/constants/coins.h index 3ae3bb23f..e65e981d6 100644 --- a/include/constants/coins.h +++ b/include/constants/coins.h @@ -2,5 +2,6 @@ #define GUARD_CONSTANTS_COINS_H #define MAX_COINS 9999 +#define MAX_COIN_DIGITS 4 #endif // GUARD_CONSTANTS_COINS_H diff --git a/include/constants/roulette.h b/include/constants/roulette.h new file mode 100644 index 000000000..2ab17e476 --- /dev/null +++ b/include/constants/roulette.h @@ -0,0 +1,7 @@ +#ifndef GUARD_CONSTANTS_ROULETTE_H +#define GUARD_CONSTANTS_ROULETTE_H + +// Flag set in gSpecialVar_0x8004 when playing Roulette on a Game Corner service day +#define ROULETTE_SPECIAL_RATE (1 << 7) + +#endif // GUARD_CONSTANTS_ROULETTE_H |