From 5a98c829ba556356fc5c2da37d5bedbc6d7ab7ee Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Tue, 9 Apr 2002 08:41:49 +0000 Subject: [PATCH] - added a version of CDAudio_RandomPlay for those machines that don't get the #ifdef --- src/cd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cd.c b/src/cd.c index 08a2d55..8c8947d 100644 --- a/src/cd.c +++ b/src/cd.c @@ -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)