mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Some changes (#2350)
cellSysutilAvc2: Use UNIMPLEMENTED_FUNC macro instead of fmt::throw_exception.
This commit is contained in:
parent
05c4aa5017
commit
8c4ba3257c
1 changed files with 4 additions and 2 deletions
|
@ -89,7 +89,8 @@ s32 cellSysutilAvc2SetWindowString()
|
|||
|
||||
s32 cellSysutilAvc2EstimateMemoryContainerSize()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
UNIMPLEMENTED_FUNC(cellSysutilAvc2);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellSysutilAvc2SetVideoMuting()
|
||||
|
@ -304,7 +305,8 @@ s32 cellSysutilAvc2HideWindow()
|
|||
|
||||
s32 cellSysutilAvc2GetVoiceMuting()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
UNIMPLEMENTED_FUNC(cellSysutilAvc2);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellSysutilAvc2GetScreenShowStatus()
|
||||
|
|
Loading…
Add table
Reference in a new issue