mirror of https://github.com/red-prig/fpPS4.git
Changed input slightly (#32)
* Update ps4_libscepad.pas Changed L2 and R2 * Update README.md
This commit is contained in:
parent
fefb3e18be
commit
7a960dff60
|
@ -46,8 +46,8 @@ Square |Numpad 4
|
|||
Cross |Numpad 2
|
||||
Circle |Numpad 6
|
||||
L1 |Q
|
||||
L2 |TAB
|
||||
L2 |1
|
||||
L3 |Z
|
||||
R1 |E
|
||||
R2 |R
|
||||
R2 |4
|
||||
R3 |C
|
||||
|
|
|
@ -432,7 +432,7 @@ begin
|
|||
if GetAsyncKeyState(VK_Q) then
|
||||
data^.buttons:=data^.buttons or SCE_PAD_BUTTON_L1;
|
||||
|
||||
if GetAsyncKeyState(VK_TAB) then
|
||||
if GetAsyncKeyState(VK_1) then
|
||||
data^.buttons:=data^.buttons or SCE_PAD_BUTTON_L2;
|
||||
|
||||
if GetAsyncKeyState(VK_Z) then
|
||||
|
@ -442,7 +442,7 @@ begin
|
|||
if GetAsyncKeyState(VK_E) then
|
||||
data^.buttons:=data^.buttons or SCE_PAD_BUTTON_R1;
|
||||
|
||||
if GetAsyncKeyState(VK_R) then
|
||||
if GetAsyncKeyState(VK_4) then
|
||||
data^.buttons:=data^.buttons or SCE_PAD_BUTTON_R2;
|
||||
|
||||
if GetAsyncKeyState(VK_C) then
|
||||
|
|
Loading…
Reference in New Issue