mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-15 23:20:53 +00:00
55 lines
507 B
C++
55 lines
507 B
C++
|
|
||
|
#include "cd.h"
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
extern short word_9AC30;
|
||
|
|
||
|
int cd_check_device_present()
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int initcdaudio()
|
||
|
{
|
||
|
if (!cd_check_device_present())
|
||
|
{
|
||
|
word_9AC30 = 1;
|
||
|
|
||
|
// return to text video mode
|
||
|
printf("No MSCDEX driver installed!\n");
|
||
|
exit(0);
|
||
|
}
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
void setCDaudiovolume(int val)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
int playCDtrack(int nTrack)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
void StartfadeCDaudio()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
int StepFadeCDaudio()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int CDplaying()
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
void StopCD()
|
||
|
{
|
||
|
|
||
|
}
|