mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
hle: Fix cellAvconfExt function registrations
Co-authored-by: Clienthax <clienthax@gmail.com>
This commit is contained in:
parent
3aa293a7a3
commit
fa3fde7a29
3 changed files with 29 additions and 29 deletions
|
|
@ -188,7 +188,7 @@ error_code cellAudioInGetDeviceInfo(u32 deviceNumber, u32 deviceIndex, vm::ptr<C
|
|||
error_code cellVideoOutConvertCursorColor(u32 videoOut, s32 displaybuffer_format, f32 gamma, s32 source_buffer_format, vm::ptr<void> src_addr, vm::ptr<u32> dest_addr, s32 num)
|
||||
{
|
||||
cellAvconfExt.todo("cellVideoOutConvertCursorColor(videoOut=%d, displaybuffer_format=0x%x, gamma=0x%x, source_buffer_format=0x%x, src_addr=*0x%x, dest_addr=*0x%x, num=0x%x)", videoOut,
|
||||
displaybuffer_format, gamma, source_buffer_format, src_addr, dest_addr, num);
|
||||
displaybuffer_format, gamma, source_buffer_format, src_addr, dest_addr, num);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
|
@ -318,6 +318,30 @@ error_code cellVideoOutSetCopyControl(u32 videoOut, u32 control)
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellVideoOutConfigure2()
|
||||
{
|
||||
cellAvconfExt.todo("cellVideoOutConfigure2()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellAudioOutGetConfiguration2()
|
||||
{
|
||||
cellAvconfExt.todo("cellAudioOutGetConfiguration2()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellAudioOutConfigure2()
|
||||
{
|
||||
cellAvconfExt.todo("cellAudioOutConfigure2()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellVideoOutGetResolutionAvailability2()
|
||||
{
|
||||
cellAvconfExt.todo("cellVideoOutGetResolutionAvailability2()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellAvconfExt)
|
||||
("cellSysutilAvconfExt", []() {
|
||||
REG_FUNC(cellSysutilAvconfExt, cellAudioOutUnregisterDevice);
|
||||
|
|
@ -337,4 +361,8 @@ DECLARE(ppu_module_manager::cellAvconfExt)
|
|||
REG_FUNC(cellSysutilAvconfExt, cellAudioInUnregisterDevice);
|
||||
REG_FUNC(cellSysutilAvconfExt, cellVideoOutGetScreenSize);
|
||||
REG_FUNC(cellSysutilAvconfExt, cellVideoOutSetCopyControl);
|
||||
REG_FUNC(cellSysutilAvconfExt, cellVideoOutConfigure2);
|
||||
REG_FUNC(cellSysutilAvconfExt, cellAudioOutGetConfiguration2);
|
||||
REG_FUNC(cellSysutilAvconfExt, cellAudioOutConfigure2);
|
||||
REG_FUNC(cellSysutilAvconfExt, cellVideoOutGetResolutionAvailability2);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue