File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ void S_Init( void ) {
485
485
Cmd_AddCommand (" s_dynamic" , S_SetDynamicMusic_f);
486
486
487
487
#ifdef USE_OPENAL
488
- cv = Cvar_Get (" s_UseOpenAL" , " 0" ,CVAR_ARCHIVE|CVAR_LATCH);
488
+ cvar_t * cv = Cvar_Get (" s_UseOpenAL" , " 0" ,CVAR_ARCHIVE|CVAR_LATCH);
489
489
s_UseOpenAL = !!(cv->integer );
490
490
491
491
if (s_UseOpenAL)
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ void S_Init( void ) {
485
485
Cmd_AddCommand (" s_dynamic" , S_SetDynamicMusic_f, " Change dynamic music state" );
486
486
487
487
#ifdef USE_OPENAL
488
- cv = Cvar_Get (" s_UseOpenAL" , " 0" ,CVAR_ARCHIVE|CVAR_LATCH);
488
+ cvar_t * cv = Cvar_Get (" s_UseOpenAL" , " 0" ,CVAR_ARCHIVE|CVAR_LATCH);
489
489
s_UseOpenAL = !!(cv->integer );
490
490
491
491
if (s_UseOpenAL)
You can’t perform that action at this time.
0 commit comments