1
0
Fork 0

Merge pull request #110652 from akien-mga/vorbis-comment-warning

Vorbis: Add details to warning about invalid comment header
This commit is contained in:
Thaddeus Crews 2025-09-18 12:42:29 -05:00
commit 369ed5113e
No known key found for this signature in database
GPG Key ID: 8C6E5FEB5FC03CCC
1 changed files with 1 additions and 1 deletions

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;
}