]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cd_shared.c
Fixed partially the sound code for DP video captures. It still can't sync with the...
[xonotic/darkplaces.git] / cd_shared.c
index d1106c3701adab518d52025ba2f894034f64b059..bce1c14b4fa45769dfd8e7471b4674d1d97815d5 100644 (file)
@@ -137,7 +137,7 @@ void CDAudio_Play (qbyte track, qboolean looping)
 
                if (track > maxTrack)
                {
-                       Con_DPrintf("CDAudio: Bad track number %u.\n", track);
+                       Con_Printf("CDAudio: Bad track number %u.\n", track);
                        return;
                }
 
@@ -380,7 +380,12 @@ int CDAudio_Startup (void)
 
        saved_vol = CDAudio_SysGetVolume ();
        if (saved_vol < 0.0f)
+       {
+               Con_DPrint ("Can't get initial CD volume\n");
                saved_vol = 1.0f;
+       }
+       else
+               Con_DPrintf ("Initial CD volume: %g\n", saved_vol);
 
        initialized = true;