This commit is contained in:
Pavel 2022-10-14 16:38:41 +03:00
parent 76bac6a43f
commit 8589c9daf0
2 changed files with 3 additions and 2 deletions

View File

@ -638,7 +638,7 @@ begin
{$ifdef ww}writeln;{$endif}
GFXMicroEngine.PushCmd(GFXRing.CmdBuffer);
GFXMicroEngine.PushFlip(GFXRing.Current^.Flip,0,nil,False{True});
GFXMicroEngine.PushFlip(GFXRing.Current^.Flip,0,nil,True);
end;
procedure onPrepareFlipWithEopInterruptLabel(pm4Hdr:PM4_TYPE_3_HEADER;Body:PPM4PrepareFlipWithEopInterrupt);
@ -649,7 +649,7 @@ begin
{$ifdef ww}Writeln('adr:',HexStr(adr),' data:',HexStr(Body^.DATA,8));{$endif}
GFXMicroEngine.PushCmd(GFXRing.CmdBuffer);
GFXMicroEngine.PushFlip(GFXRing.Current^.Flip,Body^.DATA,adr,False{True});
GFXMicroEngine.PushFlip(GFXRing.Current^.Flip,Body^.DATA,adr,True);
end;
procedure onEventWriteEop(pm4Hdr:PM4_TYPE_3_HEADER;Body:PEVENTWRITEEOP);

View File

@ -190,6 +190,7 @@ type
function ps4_sceSaveDataDialogClose(closeParam:pSceSaveDataDialogCloseParam):Integer; SysV_ABI_CDecl;
begin
Writeln('sceSaveDataDialogClose');
status_save_dialog:=SCE_COMMON_DIALOG_STATUS_FINISHED;
Result:=0;
end;