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