foxygit / doom Log in
commit 04e809fb794f8371ea3dd9015145ca2a35ad77a0
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Mon Jan 8 22:46:05 2007 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Mon Jan 8 22:46:05 2007 +0000

    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(-)

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