changed normalized form of games ids

opl seems to work mostly with this format
This commit is contained in:
2026-01-05 16:08:39 +01:00
parent 1d766a843e
commit bbd765bccb
2 changed files with 16 additions and 16 deletions

View File

@@ -53,9 +53,9 @@ func normalizeGameID(id string) string {
}
prefix := strings.ToUpper(matches[1])
number := matches[2] + matches[3]
number := matches[2] + "." + matches[3]
return prefix + "-" + number
return prefix + "_" + number
}
func renameGameFile(filePath, gameName string) (string, error) {