mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-15 23:20:53 +00:00
50349a6b3d
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters # source/build/include/build.h # source/build/src/palette.cpp
57 lines
No EOL
605 B
C++
57 lines
No EOL
605 B
C++
|
|
#include "compat.h"
|
|
#include "baselayer.h"
|
|
#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
|
|
initprintf("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()
|
|
{
|
|
|
|
} |