[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:
nmlgc 2022-05-28 20:04:54 +02:00
parent e98fa0b78e
commit cde1199485
1 changed files with 7 additions and 1 deletions

View File

@ -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,