ref: a8a766f53153710122d2fd1d9a8f53059d254c38
dir: /unix/cd.c/
#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; }