mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-26 19:46:19 +00:00
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:
parent
8e91de7501
commit
f546e9084f
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user