Turn SDL2 initialization message into a warning

Resolves #622
This commit is contained in:
derselbst 2020-03-03 16:15:32 +01:00
parent 3b851da6f7
commit a359e7f222
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ void fluid_sdl2_audio_driver_settings(fluid_settings_t *settings)
if(!SDL_WasInit(SDL_INIT_AUDIO))
{
FLUID_LOG(FLUID_ERR, "SDL2 not initialized");
FLUID_LOG(FLUID_WARN, "SDL2 not initialized, SDL2 audio driver won't be usable");
return;
}