From 37263ee9616e1d49b42a4ec1274a217cd5a6eb05 Mon Sep 17 00:00:00 2001 From: Ordinary205 <125112932+Ordinary205@users.noreply.github.com> Date: Sat, 13 Jan 2024 00:54:50 +0400 Subject: [PATCH] sceMoveSetVibration (#167) --- src/ps4_libscemove.pas | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ps4_libscemove.pas b/src/ps4_libscemove.pas index 33b6941f..9cf1f54d 100644 --- a/src/ps4_libscemove.pas +++ b/src/ps4_libscemove.pas @@ -90,6 +90,11 @@ begin Result:=SCE_MOVE_RETURN_CODE_NO_CONTROLLER_CONNECTED; end; +function ps4_sceMoveSetVibration(handle:Integer;motor:Byte):Integer; SysV_ABI_CDecl; +begin + Result:=SCE_MOVE_RETURN_CODE_NO_CONTROLLER_CONNECTED; +end; + function Load_libSceMove(Const name:RawByteString):TElf_node; var lib:PLIBRARY; @@ -103,6 +108,7 @@ begin lib^.set_proc($5D7EB0971A47C9EA,@ps4_sceMoveClose); lib^.set_proc($1965D3CB1B3841B1,@ps4_sceMoveGetDeviceInfo); lib^.set_proc($7F66DCA4AEA425F8,@ps4_sceMoveReadStateRecent); + lib^.set_proc($205430B53D82798D,@ps4_sceMoveSetVibration); end; initialization