shithub: qk1

ref: 2eb12cbb704a50af2de2e064e6be56c8f5577028
dir: /cd_null.c/

View raw version
#include "quakedef.h"

void
stopcd(void)
{
}

void
pausecd(void)
{
}

void
resumecd(void)
{
}

void
shutcd(void)
{
}

void
stepcd(void)
{
}

void
playcd(int nt, bool loop)
{
	USED(nt); USED(loop);
}

int
initcd(void)
{
	Cvar_RegisterVariable(&bgmvolume);
	Cmd_AddCommand("cd", cdcmd);
	return 0;
}