mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
(#4918) Gametype clamping using constant integer in missionpack ui, by Zack Middleton
This commit is contained in:
parent
b1f861b8da
commit
8bdd8e6705
1 changed files with 2 additions and 2 deletions
|
@ -2776,7 +2776,7 @@ static void UI_StartSinglePlayer(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
trap_Cvar_SetValue( "singleplayer", 1 );
|
trap_Cvar_SetValue( "singleplayer", 1 );
|
||||||
trap_Cvar_SetValue( "g_gametype", Com_Clamp( 0, 7, tierList[i].gameTypes[j] ) );
|
trap_Cvar_SetValue( "g_gametype", Com_Clamp( 0, GT_MAX_GAME_TYPE-1, tierList[i].gameTypes[j] ) );
|
||||||
trap_Cmd_ExecuteText( EXEC_APPEND, va( "wait ; wait ; map %s\n", tierList[i].maps[j] ) );
|
trap_Cmd_ExecuteText( EXEC_APPEND, va( "wait ; wait ; map %s\n", tierList[i].maps[j] ) );
|
||||||
skill = trap_Cvar_VariableValue( "g_spSkill" );
|
skill = trap_Cvar_VariableValue( "g_spSkill" );
|
||||||
|
|
||||||
|
@ -3160,7 +3160,7 @@ static void UI_RunMenuScript(char **args) {
|
||||||
trap_Cvar_Set("cg_cameraOrbit", "0");
|
trap_Cvar_Set("cg_cameraOrbit", "0");
|
||||||
trap_Cvar_Set("ui_singlePlayerActive", "0");
|
trap_Cvar_Set("ui_singlePlayerActive", "0");
|
||||||
trap_Cvar_SetValue( "dedicated", Com_Clamp( 0, 2, ui_dedicated.integer ) );
|
trap_Cvar_SetValue( "dedicated", Com_Clamp( 0, 2, ui_dedicated.integer ) );
|
||||||
trap_Cvar_SetValue( "g_gametype", Com_Clamp( 0, 8, uiInfo.gameTypes[ui_netGameType.integer].gtEnum ) );
|
trap_Cvar_SetValue( "g_gametype", Com_Clamp( 0, GT_MAX_GAME_TYPE-1, uiInfo.gameTypes[ui_netGameType.integer].gtEnum ) );
|
||||||
trap_Cvar_Set("g_redTeam", UI_Cvar_VariableString("ui_teamName"));
|
trap_Cvar_Set("g_redTeam", UI_Cvar_VariableString("ui_teamName"));
|
||||||
trap_Cvar_Set("g_blueTeam", UI_Cvar_VariableString("ui_opponentName"));
|
trap_Cvar_Set("g_blueTeam", UI_Cvar_VariableString("ui_opponentName"));
|
||||||
trap_Cmd_ExecuteText( EXEC_APPEND, va( "wait ; wait ; map %s\n", uiInfo.mapList[ui_currentNetMap.integer].mapLoadName ) );
|
trap_Cmd_ExecuteText( EXEC_APPEND, va( "wait ; wait ; map %s\n", uiInfo.mapList[ui_currentNetMap.integer].mapLoadName ) );
|
||||||
|
|
Loading…
Reference in a new issue