Use 100% because 80% is in some games' deadzone.

Like Senjou no Valkyria 3.  Also some games register it but move slow.
This commit is contained in:
Unknown W. Brackets 2013-01-06 22:57:33 -08:00
parent 8e91de7501
commit f546e9084f

View File

@ -43,16 +43,16 @@ int KeyboardDevice::UpdateState() {
switch (analog_ctrl_map[i + 1]) {
case CTRL_UP:
analogY += .8f;
analogY += 1.0f;
break;
case CTRL_DOWN:
analogY -= .8f;
analogY -= 1.0f;
break;
case CTRL_LEFT:
analogX -= .8f;
analogX -= 1.0f;
break;
case CTRL_RIGHT:
analogX += .8f;
analogX += 1.0f;
break;
}
}