Changed input slightly (#32)

* Update ps4_libscepad.pas

Changed L2 and R2

* Update README.md
This commit is contained in:
gandalfthewhite19890404 2022-12-04 16:42:39 +03:00 committed by GitHub
parent fefb3e18be
commit 7a960dff60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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