mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-11 18:50:55 +00:00
Add cellVideoOutSetCopyControl function
This commit is contained in:
parent
e9f12ae30a
commit
6e81db7b43
1 changed files with 7 additions and 0 deletions
|
@ -143,6 +143,12 @@ s32 cellVideoOutGetScreenSize(u32 videoOut, vm::ptr<f32> screenSize)
|
||||||
return CELL_VIDEO_OUT_ERROR_VALUE_IS_NOT_SET;
|
return CELL_VIDEO_OUT_ERROR_VALUE_IS_NOT_SET;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 cellVideoOutSetCopyControl(u32 videoOut, u32 control)
|
||||||
|
{
|
||||||
|
cellAvconfExt.todo("cellVideoOutSetCopyControl(videoOut=%d, control=0x%x)", videoOut, control);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
DECLARE(ppu_module_manager::cellAvconfExt)("cellSysutilAvconfExt", []()
|
DECLARE(ppu_module_manager::cellAvconfExt)("cellSysutilAvconfExt", []()
|
||||||
{
|
{
|
||||||
|
@ -168,4 +174,5 @@ DECLARE(ppu_module_manager::cellAvconfExt)("cellSysutilAvconfExt", []()
|
||||||
REG_FUNC(cellSysutilAvconfExt, cellAudioInRegisterDevice);
|
REG_FUNC(cellSysutilAvconfExt, cellAudioInRegisterDevice);
|
||||||
REG_FUNC(cellSysutilAvconfExt, cellAudioInUnregisterDevice);
|
REG_FUNC(cellSysutilAvconfExt, cellAudioInUnregisterDevice);
|
||||||
REG_FUNC(cellSysutilAvconfExt, cellVideoOutGetScreenSize);
|
REG_FUNC(cellSysutilAvconfExt, cellVideoOutGetScreenSize);
|
||||||
|
REG_FUNC(cellSysutilAvconfExt, cellVideoOutSetCopyControl);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue