Skip to content

Commit

Permalink
openal_track: Tweak debug log level
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Oct 19, 2023
1 parent f548138 commit 84daf88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sound/openal_track.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ AUDIO_STREAM *sound_PlayStream(const char* fileName,
if (res < buffer_count)
{
// free unused buffers
debug(LOG_INFO, "freeing unused %i buffers", buffer_count - res);
debug(LOG_SOUND, "freeing unused %i buffers", buffer_count - res);
alDeleteBuffers(buffer_count - res, alBuffersIds + res);
if (sound_GetError() != AL_NO_ERROR) { goto _error_with_albuffers; }
}
Expand Down

0 comments on commit 84daf88

Please sign in to comment.