Ejemplo n.º 1
0
/*
* CL_PauseCinematic_f
*/
void CL_PauseCinematic_f( void )
{
	if( cls.state != CA_CINEMATIC )
	{
		Com_Printf( "Usage: %s\n", Cmd_Argv( 0 ) );
		return;
	}

	SCR_PauseCinematic();
}
Ejemplo n.º 2
0
static void AppActivate( bool active )
{
	SCR_PauseCinematic( !active );
	CL_SoundModule_Activate( active );
	VID_AppActivate( active, false );
}
Ejemplo n.º 3
0
/*
* SCR_FinishCinematic
*
* Called when either the cinematic completes, or it is aborted
*/
void SCR_FinishCinematic( void )
{
	SCR_PauseCinematic( false );
	CL_Disconnect( NULL );
}