Mercurial > SDL_sound_CoreAudio
diff decoders/au.c @ 294:9828311da44b
Minor cleanups.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 17 Mar 2002 21:17:23 +0000 |
parents | 7c4f6ee02cd0 |
children | c97be6e1bd27 |
line wrap: on
line diff
--- a/decoders/au.c Sun Mar 17 21:17:09 2002 +0000 +++ b/decoders/au.c Sun Mar 17 21:17:23 2002 +0000 @@ -140,7 +140,7 @@ r = SDL_RWread(rw, &hdr, 1, HDR_SIZE); if (r < HDR_SIZE) { - Sound_SetError("No .au file (bad header)"); + Sound_SetError("AU: Not an .au file (bad header)"); free(dec); return(0); } /* if */ @@ -167,7 +167,7 @@ break; default: - Sound_SetError("Unsupported .au encoding"); + Sound_SetError("AU: Unsupported .au encoding"); free(dec); return 0; } /* switch */ @@ -202,7 +202,7 @@ else { - SNDDBG(("AU: Not an .AU stream.\n")); + Sound_SetError("AU: Not an .AU stream."); free(dec); return(0); } /* else */