diff options
Diffstat (limited to 'site/src')
| -rw-r--r-- | site/src/components/TitleBar.tsx | 1 | ||||
| -rw-r--r-- | site/src/utils.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx index 937fcf7..728060a 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -89,6 +89,7 @@ const TitleBar: React.FC = () => { games: [ { id: "wacca_plus", title: "WACCA PLUS" }, { id: "museca_plus", title: "MÚSECA PLUS" }, + { id: "rb_deluxe_plus", title: "RB DELUXE PLUS" }, ], }, ]; diff --git a/site/src/utils.ts b/site/src/utils.ts index 4fe3493..6e71c9c 100644 --- a/site/src/utils.ts +++ b/site/src/utils.ts @@ -19,6 +19,7 @@ export const getGameTitle = (gameId: string) => { if (lowerCaseGameId.startsWith("taiko")) return "Taiko no Tatsujin"; if (lowerCaseGameId.startsWith("wacca")) return "WACCA PLUS"; if (lowerCaseGameId.startsWith("museca")) return "MÚSECA PLUS"; + if (lowerCaseGameId.startsWith("rb_deluxe")) return "REFLEC BEAT DELUXE PLUS"; return gameId.toUpperCase(); |
