This commit is contained in:
Nishi 2025-11-25 05:57:45 +09:00
commit f1cd631aae
Signed by: nishi
GPG key ID: 27EF69B208EB9343

View file

@ -36,7 +36,7 @@ static MDESoundContext vorbis_open(const char* path) {
ctx->artist = MDEStringDuplicate(p + 1);
} else if(strcasecmp(s, "GENRE") == 0) {
ctx->genre = MDEStringDuplicate(p + 1);
} else if(strcasecmp(s, "TRACK") == 0) {
} else if(strcasecmp(s, "TRACKNUMBER") == 0) {
ctx->track = atoi(p + 1);
}
}