diff options
Diffstat (limited to 'site')
| -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 a3f3fa1..5d8606c 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -22,6 +22,7 @@ const TitleBar: React.FC = () => { name: "SEGA", games: [ { id: "chunithm_jp", title: "CHUNITHM (JAPAN)" }, + { id: "chunithm_intl", title: "CHUNITHM (INTERNATIONAL)" }, { id: "maimaidx_jp", title: "maimai DX (JAPAN)" }, { id: "maimaidx_intl", title: "maimai DX (INTERNATIONAL)"}, { id: "ongeki_jp", title: "O.N.G.E.K.I"}, diff --git a/site/src/utils.ts b/site/src/utils.ts index f325c28..802d364 100644 --- a/site/src/utils.ts +++ b/site/src/utils.ts @@ -9,6 +9,7 @@ export const getGameTitle = (gameId: string) => { if (lowerCaseGameId.startsWith("maimaidx_jp")) return "maimai DX (JAPAN)"; if (lowerCaseGameId.startsWith("maimaidx_intl")) return "maimai DX (INTERNATIONAL)"; if (lowerCaseGameId.startsWith("ongeki_jp")) return "O.N.G.E.K.I" + if (lowerCaseGameId.startsWith("chunithm_intl")) return "CHUNITHM (INTERNATIONAL)" return gameId.toUpperCase(); }; |
