mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2025-01-06 09:51:05 +00:00
- added a version of CDAudio_RandomPlay for those machines
that don't get the #ifdef
This commit is contained in:
parent
a3c0bd8e43
commit
5a98c829ba
1 changed files with 4 additions and 0 deletions
4
src/cd.c
4
src/cd.c
|
@ -326,6 +326,10 @@ void CDAudio_RandomPlay(void)
|
||||||
}
|
}
|
||||||
while (free_tracks > 0);
|
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
|
#endif
|
||||||
|
|
||||||
void CDAudio_Stop(void)
|
void CDAudio_Stop(void)
|
||||||
|
|
Loading…
Reference in a new issue