shithub: qk1

ref: 8e5f152d104f69afa38b12e80439d378a369c71d
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;
}