Some changes (#2350)

cellSysutilAvc2: Use UNIMPLEMENTED_FUNC macro instead of fmt::throw_exception.
This commit is contained in:
☠Emulator_Team☠ 2017-02-07 13:28:19 +01:00 committed by Ivan
parent 05c4aa5017
commit 8c4ba3257c
1 changed files with 4 additions and 2 deletions

View File

@ -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()