diff SDL_sound.c @ 62:b13fafb976be

Changed _D macro to DBGSND.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 24 Sep 2001 15:31:25 +0000
parents c4b8c39a9798
children 25ee62c6b333
line wrap: on
line diff
--- a/SDL_sound.c	Mon Sep 24 15:31:03 2001 +0000
+++ b/SDL_sound.c	Mon Sep 24 15:31:25 2001 +0000
@@ -218,7 +218,7 @@
 {
     if (err != NULL)
     {
-        _D(("Sound_SetError(\"%s\");\n", err));
+        SNDDBG(("Sound_SetError(\"%s\");\n", err));
         SDL_SetError(err);
     } /* if */
 } /* Sound_SetError */
@@ -395,18 +395,18 @@
     } /* if */
     samplesList = sample;
 
-    _D(("New sample DESIRED format: %s format, %d rate, %d channels.\n",
-        fmt_to_str(sample->desired.format),
-        sample->desired.rate,
-        sample->desired.channels));
+    SNDDBG(("New sample DESIRED format: %s format, %d rate, %d channels.\n",
+            fmt_to_str(sample->desired.format),
+            sample->desired.rate,
+            sample->desired.channels));
 
-    _D(("New sample ACTUAL format: %s format, %d rate, %d channels.\n",
-        fmt_to_str(sample->actual.format),
-        sample->actual.rate,
-        sample->actual.channels));
+    SNDDBG(("New sample ACTUAL format: %s format, %d rate, %d channels.\n",
+            fmt_to_str(sample->actual.format),
+            sample->actual.rate,
+            sample->actual.channels));
 
-    _D(("On-the-fly conversion: %s.\n",
-        internal->sdlcvt.needed ? "ENABLED" : "DISABLED"));
+    SNDDBG(("On-the-fly conversion: %s.\n",
+            internal->sdlcvt.needed ? "ENABLED" : "DISABLED"));
 
     return(1);
 } /* init_sample */