From 302d832fc388ebb3d89486c59039198e68966063 Mon Sep 17 00:00:00 2001 From: red-prig Date: Tue, 7 Nov 2023 23:46:41 +0300 Subject: [PATCH] sceGnmDriverCaptureInProgress --- src/ps4_libscegnmdriver.pas | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ps4_libscegnmdriver.pas b/src/ps4_libscegnmdriver.pas index a23d9249..8697f440 100644 --- a/src/ps4_libscegnmdriver.pas +++ b/src/ps4_libscegnmdriver.pas @@ -1964,6 +1964,11 @@ begin Result:=0; end; +function ps4_sceGnmDriverCaptureInProgress:Integer; SysV_ABI_CDecl; +begin + Result:=0; +end; + //A value of true is returned if submit/dingdong is allowed; otherwise false is returned. function ps4_sceGnmAreSubmitsAllowed:Boolean; SysV_ABI_CDecl; begin @@ -2231,6 +2236,8 @@ begin lib^.set_proc($7F7DCEAEBB9061B3,@ps4_sceRazorIsLoaded); + lib^.set_proc($4CB5789ACC226780,@ps4_sceGnmDriverCaptureInProgress); + lib^.set_proc($6F4C729659D563F2,@ps4_sceGnmAddEqEvent); lib^.set_proc($6F4F0082D3E51CF8,@ps4_sceGnmAreSubmitsAllowed);