mirror of https://github.com/nmlgc/ReC98.git
[Maintenance] [th01/th03] Don't declare an Extra rank
AKA a reaction commit to the unfounded theory from Asprey's "Unused Content in Touhou Project" video. (Seriously though, it does help with the code for these games.) Part of P0197, funded by Yanga and Ember2528.
This commit is contained in:
parent
e98fa0b78e
commit
cde1199485
|
@ -6,7 +6,13 @@ typedef enum {
|
|||
RANK_NORMAL,
|
||||
RANK_HARD,
|
||||
RANK_LUNATIC,
|
||||
RANK_EXTRA,
|
||||
|
||||
// Hi Asprey, there is no unused Extra rank in TH01.
|
||||
// (https://www.youtube.com/watch?v=RcjhM4tfPq4&t=169s)
|
||||
#if ((GAME != 1) && (GAME != 3))
|
||||
RANK_EXTRA,
|
||||
#endif
|
||||
|
||||
RANK_COUNT,
|
||||
RANK_DEFAULT = -1,
|
||||
|
||||
|
|
Loading…
Reference in New Issue