blob: 270b5a20e346f87bda103f29a956317d2d698620 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
export const getGameTitle = (gameId: string) => {
if (!gameId) return null;
const lowerCaseGameId = gameId.toLowerCase();
if (lowerCaseGameId.startsWith("sdvx")) return "SOUND VOLTEX";
if (lowerCaseGameId.startsWith("iidx")) return "beatmania IIDX";
if (lowerCaseGameId.startsWith("chunithm_jp")) return "CHUNITHM (JAPAN)";
if (lowerCaseGameId.startsWith("maimaidx_jp")) return "maimai DX (JAPAN)";
return gameId.toUpperCase();
};
|