From cde11994859401ee758b54869d4e86e7d5428dbd Mon Sep 17 00:00:00 2001 From: nmlgc Date: Sat, 28 May 2022 20:04:54 +0200 Subject: [PATCH] [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. --- th01/rank.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/th01/rank.h b/th01/rank.h index 9256c769..afe92cef 100644 --- a/th01/rank.h +++ b/th01/rank.h @@ -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,