make the plugin cvars rom rather than archive

This commit is contained in:
Bill Currie 2003-01-08 22:42:55 +00:00
parent e32dc4cdb7
commit 0926ab64ec
2 changed files with 4 additions and 4 deletions

View file

@ -94,7 +94,7 @@ int
CDAudio_Init (void)
{
PI_RegisterPlugins (cd_plugin_list);
cd_plugin = Cvar_Get ("cd_plugin", "null", CVAR_ARCHIVE, NULL,
cd_plugin = Cvar_Get ("cd_plugin", "null", CVAR_ROM, NULL,
"CD Plugin to use");
cdmodule = PI_LoadPlugin ("cd", cd_plugin->string);
if (!cdmodule) {

View file

@ -121,13 +121,13 @@ S_Init_Cvars (void)
snd_interp = Cvar_Get ("snd_interp", "1", CVAR_ARCHIVE, NULL,
"control sample interpolation");
#ifdef _WIN32
snd_output = Cvar_Get ("snd_output", "sdl", CVAR_ARCHIVE, NULL,
snd_output = Cvar_Get ("snd_output", "sdl", CVAR_ROM, NULL,
"Sound Output Plugin to use");
#else
snd_output = Cvar_Get ("snd_output", "oss", CVAR_ARCHIVE, NULL,
snd_output = Cvar_Get ("snd_output", "oss", CVAR_ROM, NULL,
"Sound Output Plugin to use");
#endif
snd_render = Cvar_Get ("snd_render", "default", CVAR_ARCHIVE, NULL,
snd_render = Cvar_Get ("snd_render", "default", CVAR_ROM, NULL,
"Sound Renderer Plugin to use");
}