- added a version of CDAudio_RandomPlay for those machines

that don't get the #ifdef
This commit is contained in:
Jamie Wilkinson 2002-04-09 08:41:49 +00:00
parent a3c0bd8e43
commit 5a98c829ba
1 changed files with 4 additions and 0 deletions

View File

@ -326,6 +326,10 @@ void CDAudio_RandomPlay(void)
}
while (free_tracks > 0);
}
#else /* let the others compile at least */
void CDAudio_RandomPlay(void) {
Com_DPrintf("CDAudio_RandomPlay: Not yet supported on your platform");
}
#endif
void CDAudio_Stop(void)