Behebt einen Absturz beim Levelwechsel, wenn zuvor OGG/Vorbis

deaktiviert wurde.
This commit is contained in:
Yamagi Burmeister 2010-01-28 21:11:46 +00:00
parent 0c127815f2
commit c3dcd1c1fa
1 changed files with 5 additions and 2 deletions

View File

@ -635,7 +635,9 @@ Parse play controls.
*/
void OGG_ParseCmd(char *arg)
{
int n;
int n;
cvar_t *ogg_enable;
ogg_enable = Cvar_Get ("ogg_enable", "0", CVAR_ARCHIVE);
switch (arg[0]) {
case '#':
@ -658,7 +660,8 @@ void OGG_ParseCmd(char *arg)
OGG_Open(REL, -1);
break;
default:
OGG_OpenName(arg);
if (ogg_enable->value != 0)
OGG_OpenName(arg);
break;
}
}