diff options
Diffstat (limited to 'site/src')
| -rw-r--r-- | site/src/components/NewsFeed.tsx | 3 | ||||
| -rw-r--r-- | site/src/components/TitleBar.tsx | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/site/src/components/NewsFeed.tsx b/site/src/components/NewsFeed.tsx index f030200..99099be 100644 --- a/site/src/components/NewsFeed.tsx +++ b/site/src/components/NewsFeed.tsx @@ -132,5 +132,8 @@ function getGameName(identifier: string): string | null { else if(identifier.startsWith("CHUNITHM_JP")){ return "CHUNITHM (JAPAN)"; } + else if(identifier.startsWith("MAIMAIDX_JP")){ + return "maimai DX (JAPAN)" + } return null; } diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx index bf79191..d7cd1bf 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -21,7 +21,8 @@ const TitleBar: React.FC = () => { { name: "SEGA", games: [ - { id: "chunithm_jp", title: "CHUNITHM JPN" }, + { id: "chunithm_jp", title: "CHUNITHM (JPN)" }, + { id: "chunithm_jp", title: "maimai DX (JPN)" }, ] } ]; @@ -116,4 +117,4 @@ const TitleBar: React.FC = () => { ); }; -export default TitleBar;
\ No newline at end of file +export default TitleBar; |
