mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 17:00:56 +00:00
- moved binding files to subdirectory
- fixed search/replace error.
This commit is contained in:
parent
cfaafcede7
commit
47acdae8e6
17 changed files with 58 additions and 58 deletions
|
@ -40,12 +40,12 @@ BEGIN_BLD_NS
|
||||||
|
|
||||||
static const char * mousedefaults[MAXMOUSEBUTTONS] =
|
static const char * mousedefaults[MAXMOUSEBUTTONS] =
|
||||||
{
|
{
|
||||||
"Weapon_Fire"
|
"Weapon_Fire",
|
||||||
"Weapon_Special_Fire"
|
"Weapon_Special_Fire",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
"Previous_Weapon"
|
"Previous_Weapon",
|
||||||
"Next_Weapon"
|
"Next_Weapon",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -56,8 +56,8 @@ static const char * mouseclickeddefaults[MAXMOUSEBUTTONS] =
|
||||||
|
|
||||||
static const char * mouseanalogdefaults[MAXMOUSEAXES] =
|
static const char * mouseanalogdefaults[MAXMOUSEAXES] =
|
||||||
{
|
{
|
||||||
"analog_turning"
|
"analog_turning",
|
||||||
"analog_moving"
|
"analog_moving",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -67,71 +67,71 @@ static const char * mousedigitaldefaults[MAXMOUSEDIGITAL] =
|
||||||
|
|
||||||
static const char * joystickdefaults[MAXJOYBUTTONSANDHATS] =
|
static const char * joystickdefaults[MAXJOYBUTTONSANDHATS] =
|
||||||
{
|
{
|
||||||
"Fire"
|
"Fire",
|
||||||
"Strafe"
|
"Strafe",
|
||||||
"Run"
|
"Run",
|
||||||
"Open"
|
"Open",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
"Aim_Down"
|
"Aim_Down",
|
||||||
"Look_Right"
|
"Look_Right",
|
||||||
"Aim_Up"
|
"Aim_Up",
|
||||||
"Look_Left"
|
"Look_Left",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static const char * joystickclickeddefaults[MAXJOYBUTTONSANDHATS] =
|
static const char * joystickclickeddefaults[MAXJOYBUTTONSANDHATS] =
|
||||||
{
|
{
|
||||||
""
|
"",
|
||||||
"Inventory"
|
"Inventory",
|
||||||
"Jump"
|
"Jump",
|
||||||
"Crouch"
|
"Crouch",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static const char * joystickanalogdefaults[MAXJOYAXES] =
|
static const char * joystickanalogdefaults[MAXJOYAXES] =
|
||||||
{
|
{
|
||||||
"analog_turning"
|
"analog_turning",
|
||||||
"analog_moving"
|
"analog_moving",
|
||||||
"analog_strafing"
|
"analog_strafing",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static const char * joystickdigitaldefaults[MAXJOYDIGITAL] =
|
static const char * joystickdigitaldefaults[MAXJOYDIGITAL] =
|
||||||
{
|
{
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
""
|
"",
|
||||||
"Run"
|
"Run",
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue