mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Fix stricmp usage in previous commit.
This commit is contained in:
parent
b7f2ebd477
commit
6262972488
1 changed files with 10 additions and 10 deletions
|
@ -537,52 +537,52 @@ static qboolean KeyToAxisAndSign(int keynum, int *outAxis, int *outSign)
|
||||||
|
|
||||||
*outSign = 0;
|
*outSign = 0;
|
||||||
|
|
||||||
if (stricmp(bind, "+forward") == 0)
|
if (Q_stricmp(bind, "+forward") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_forward_axis->integer;
|
*outAxis = j_forward_axis->integer;
|
||||||
*outSign = j_forward->value > 0.0f ? 1 : -1;
|
*outSign = j_forward->value > 0.0f ? 1 : -1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+back") == 0)
|
else if (Q_stricmp(bind, "+back") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_forward_axis->integer;
|
*outAxis = j_forward_axis->integer;
|
||||||
*outSign = j_forward->value > 0.0f ? -1 : 1;
|
*outSign = j_forward->value > 0.0f ? -1 : 1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+moveleft") == 0)
|
else if (Q_stricmp(bind, "+moveleft") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_side_axis->integer;
|
*outAxis = j_side_axis->integer;
|
||||||
*outSign = j_side->value > 0.0f ? -1 : 1;
|
*outSign = j_side->value > 0.0f ? -1 : 1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+moveright") == 0)
|
else if (Q_stricmp(bind, "+moveright") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_side_axis->integer;
|
*outAxis = j_side_axis->integer;
|
||||||
*outSign = j_side->value > 0.0f ? 1 : -1;
|
*outSign = j_side->value > 0.0f ? 1 : -1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+lookup") == 0)
|
else if (Q_stricmp(bind, "+lookup") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_pitch_axis->integer;
|
*outAxis = j_pitch_axis->integer;
|
||||||
*outSign = j_pitch->value > 0.0f ? -1 : 1;
|
*outSign = j_pitch->value > 0.0f ? -1 : 1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+lookdown") == 0)
|
else if (Q_stricmp(bind, "+lookdown") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_pitch_axis->integer;
|
*outAxis = j_pitch_axis->integer;
|
||||||
*outSign = j_pitch->value > 0.0f ? 1 : -1;
|
*outSign = j_pitch->value > 0.0f ? 1 : -1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+left") == 0)
|
else if (Q_stricmp(bind, "+left") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_yaw_axis->integer;
|
*outAxis = j_yaw_axis->integer;
|
||||||
*outSign = j_yaw->value > 0.0f ? 1 : -1;
|
*outSign = j_yaw->value > 0.0f ? 1 : -1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+right") == 0)
|
else if (Q_stricmp(bind, "+right") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_yaw_axis->integer;
|
*outAxis = j_yaw_axis->integer;
|
||||||
*outSign = j_yaw->value > 0.0f ? -1 : 1;
|
*outSign = j_yaw->value > 0.0f ? -1 : 1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+moveup") == 0)
|
else if (Q_stricmp(bind, "+moveup") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_up_axis->integer;
|
*outAxis = j_up_axis->integer;
|
||||||
*outSign = j_up->value > 0.0f ? 1 : -1;
|
*outSign = j_up->value > 0.0f ? 1 : -1;
|
||||||
}
|
}
|
||||||
else if (stricmp(bind, "+movedown") == 0)
|
else if (Q_stricmp(bind, "+movedown") == 0)
|
||||||
{
|
{
|
||||||
*outAxis = j_up_axis->integer;
|
*outAxis = j_up_axis->integer;
|
||||||
*outSign = j_up->value > 0.0f ? -1 : 1;
|
*outSign = j_up->value > 0.0f ? -1 : 1;
|
||||||
|
|
Loading…
Reference in a new issue