]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cd_win.c
eliminated qbyte type, now uses unsigned char throughout the engine for this purpose
[xonotic/darkplaces.git] / cd_win.c
index 2eec19acd684409a2be3b9682226bfbbcd4a7e5d..41f2a3caefd29522aa7b7db8769f2ecc3ce511dd 100644 (file)
--- a/cd_win.c
+++ b/cd_win.c
@@ -98,7 +98,7 @@ void CDAudio_SysSetVolume (float volume)
 }
 
 
-int CDAudio_SysPlay (qbyte track)
+int CDAudio_SysPlay (unsigned char track)
 {
        DWORD                           dwReturn;
        MCI_PLAY_PARMS          mciPlayParms;
@@ -187,7 +187,7 @@ int CDAudio_SysResume (void)
                Con_Printf("CDAudio_SysResume: MCI_PLAY failed (%i)\n", dwReturn);
                return -1;
        }
-       return 0;       
+       return 0;
 }
 
 LONG CDAudio_MessageHandler (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)