From b9cdc74b2b85e05311107f5889f911c69c593490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 18 Sep 2025 10:50:59 +0200 Subject: [PATCH] Vorbis: Add details to warning about invalid comment header --- modules/vorbis/audio_stream_ogg_vorbis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/vorbis/audio_stream_ogg_vorbis.cpp b/modules/vorbis/audio_stream_ogg_vorbis.cpp index d948d0cd3ba..e8191d33cf0 100644 --- a/modules/vorbis/audio_stream_ogg_vorbis.cpp +++ b/modules/vorbis/audio_stream_ogg_vorbis.cpp @@ -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; }