Vorbis: Add details to warning about invalid comment header

This commit is contained in:
Rémi Verschelde
2025-09-18 10:50:59 +02:00
parent 8b4b93a82e
commit b9cdc74b2b

View File

@ -462,7 +462,7 @@ void AudioStreamOggVorbis::maybe_update_info() {
int equals = c.find_char('=');
if (equals == -1) {
WARN_PRINT("Invalid comment in Ogg Vorbis file.");
WARN_PRINT(vformat(R"(Invalid comment in Ogg Vorbis file "%s", should contain '=': "%s".)", get_path(), c));
continue;
}