shithub: qk1

ref: 02d16fad3aa65b08b6e947d4c2e8745d041638c4
dir: /unix/cd.c/

View raw version
#include "quakedef.h"

cvar_t bgmvolume = {"bgmvolume", "1", 1};

void
stopcd(void)
{
}

void
pausecd(void)
{
}

void
resumecd(void)
{
}

void
shutcd(void)
{
}

void
stepcd(void)
{
}

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

static void
cdcmd(void)
{
}

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