change the verbosity level for the sndfile error message

This error always occurs when there is tracker music in PWAD.
This commit is contained in:
Roman Fomin 2023-09-06 16:18:48 +07:00
parent 89fb25806f
commit c8302ce682

View File

@ -394,7 +394,7 @@ static boolean OpenFile(sndfile_t *file, void *data, sf_count_t size)
if (!file->sndfile)
{
I_Printf(VB_ERROR, "SndFile: %s", sf_strerror(file->sndfile));
I_Printf(VB_WARNING, "SndFile: %s", sf_strerror(file->sndfile));
return false;
}