Allow for pushing two C Buttons at once when using an analog stick

This value specifies how far an analog stick has to be pressed to count as a C Button pres when c Buttons are mapped to an analog stick.  The old value did not allow for pressing two c buttons at once, because diagonals did not meet the value.  This value specifies that an analog stick must be pressed roughly halfway to count as a C Button press, which allows you to push two C Buttons at once.
This commit is contained in:
Jeremy517 2016-01-07 23:49:48 -08:00
parent a1788fa779
commit 5b0ea4354b
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ BOOL IsXInputDevice( const GUID* pGuidProductFromDirectInput );
//defines
#define N64_ANALOG_MAX 127
#define XC_ANALOG_MAX 32767
#define BUTTON_ANALOG_VALUE 107
#define BUTTON_ANALOG_VALUE 60
//enums
namespace N64_BUTTONS