shithub: qk1

ref: 54dfc8929a5f41d0fc78e9a25b50ebf5748f0496
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;
}