Fix log message context

This commit is contained in:
Robert Müller 2022-06-26 21:55:06 +02:00
parent d3e4ebf66a
commit a8949cb96b

View file

@ -288,7 +288,7 @@ int CSound::Init()
if(SDL_InitSubSystem(SDL_INIT_AUDIO) < 0) if(SDL_InitSubSystem(SDL_INIT_AUDIO) < 0)
{ {
dbg_msg("gfx", "unable to init SDL audio: %s", SDL_GetError()); dbg_msg("client/sound", "unable to init SDL audio: %s", SDL_GetError());
return -1; return -1;
} }