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