Browse Source

Check +speed value

wantedhl
mittorn 9 years ago
parent
commit
3348f5d214
  1. 2
      cl_dll/Android.mk
  2. 6
      cl_dll/input_xash3d.cpp

2
cl_dll/Android.mk

@ -21,7 +21,7 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a-hard) @@ -21,7 +21,7 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a-hard)
LOCAL_MODULE_FILENAME = libclient_hardfp
endif
LOCAL_CFLAGS += -fsigned-char -DCLIENT_DLL=1
LOCAL_CFLAGS += -DCLIENT_DLL=1
SRCS=
SRCS_C=

6
cl_dll/input_xash3d.cpp

@ -201,6 +201,12 @@ void IN_Move( float frametime, usercmd_t *cmd ) @@ -201,6 +201,12 @@ void IN_Move( float frametime, usercmd_t *cmd )
IN_ToggleButtons( ac_forwardmove / ac_movecount, ac_sidemove / ac_movecount );
if( ac_forwardmove ) cmd->forwardmove = ac_forwardmove * cl_forwardspeed->value / ac_movecount;
if( ac_sidemove ) cmd->sidemove = ac_sidemove * cl_sidespeed->value / ac_movecount;
if (in_speed.state & 1)
{
cmd->forwardmove *= cl_movespeedkey->value;
cmd->sidemove *= cl_movespeedkey->value;
}
}
ac_sidemove = ac_forwardmove = rel_pitch = rel_yaw = 0;

Loading…
Cancel
Save