diff options
Diffstat (limited to 'src/sdl')
-rw-r--r-- | src/sdl/sounds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdl/sounds.c b/src/sdl/sounds.c index 956229c..f110b26 100644 --- a/src/sdl/sounds.c +++ b/src/sdl/sounds.c @@ -42,6 +42,6 @@ sound_play( // play sound if (Mix_PlayChannel(-1, sounds[SOUND_OFS(id)], 0)) { - die("Mix_PlayChannel(): %s", Mix_GetError()); + warn("Mix_PlayChannel(): %s", Mix_GetError()); } } |