From 04e809fb794f8371ea3dd9015145ca2a35ad77a0 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Mon, 8 Jan 2007 22:46:05 +0000 Subject: More helpful SDL_mixer error messages. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 827 --- src/i_sound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/i_sound.c b/src/i_sound.c index ee0ad57b..405cbfa2 100644 --- a/src/i_sound.c +++ b/src/i_sound.c @@ -522,7 +522,7 @@ I_InitSound() if (Mix_OpenAudio(22050, AUDIO_S16LSB, 2, 1024) < 0) { - fprintf(stderr, "Error initialising SDL_mixer: %s\n", SDL_GetError()); + fprintf(stderr, "Error initialising SDL_mixer: %s\n", Mix_GetError()); return; } @@ -707,7 +707,7 @@ void *I_RegisterSong(void *data, int len) { // Failed to load - fprintf(stderr, "Error loading midi\n"); + fprintf(stderr, "Error loading midi: %s\n", Mix_GetError()); } // remove file now -- cgit v1.2.3