mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Allow adjusting VoIP gain and mute during SP demo playback
This commit is contained in:
parent
e89a1b9f8e
commit
2937ac7661
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ void CL_Voip_f( void )
|
|||
reason = "Speex not initialized";
|
||||
else if (!clc.voipEnabled)
|
||||
reason = "Server doesn't support VoIP";
|
||||
else if ( Cvar_VariableValue( "g_gametype" ) == GT_SINGLE_PLAYER || Cvar_VariableValue("ui_singlePlayerActive"))
|
||||
else if (!clc.demoplaying && (Cvar_VariableValue( "g_gametype" ) == GT_SINGLE_PLAYER || Cvar_VariableValue("ui_singlePlayerActive")))
|
||||
reason = "running in single-player mode";
|
||||
|
||||
if (reason != NULL) {
|
||||
|
|
Loading…
Reference in a new issue