SVN r114 (trunk)
This commit is contained in:
parent
b97c417101
commit
caed57baa5
38 changed files with 372 additions and 393 deletions
|
|
@ -274,6 +274,11 @@ CCMD (centerview)
|
|||
Net_WriteByte (DEM_CENTERVIEW);
|
||||
}
|
||||
|
||||
CCMD(crouch)
|
||||
{
|
||||
Net_WriteByte(DEM_CROUCH);
|
||||
}
|
||||
|
||||
CCMD (land)
|
||||
{
|
||||
SendLand = true;
|
||||
|
|
@ -534,6 +539,9 @@ void G_BuildTiccmd (ticcmd_t *cmd)
|
|||
if (Button_Jump.bDown)
|
||||
cmd->ucmd.buttons |= BT_JUMP;
|
||||
|
||||
if (Button_Crouch.bDown)
|
||||
cmd->ucmd.buttons |= BT_DUCK;
|
||||
|
||||
// [RH] Scale joystick moves to full range of allowed speeds
|
||||
if (JoyAxes[JOYAXIS_PITCH] != 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue