mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
cellHddGameGetSizeKB w/a
This commit is contained in:
parent
9767cc84b0
commit
eebd48e51d
1 changed files with 12 additions and 9 deletions
|
@ -179,9 +179,12 @@ s32 cellHddGameCheck2()
|
||||||
fmt::throw_exception("Unimplemented" HERE);
|
fmt::throw_exception("Unimplemented" HERE);
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellHddGameGetSizeKB()
|
s32 cellHddGameGetSizeKB(vm::ptr<u32> size)
|
||||||
{
|
{
|
||||||
fmt::throw_exception("Unimplemented" HERE);
|
cellGame.todo("cellHddGameGetSizeKB(size=*0x%x)", size);
|
||||||
|
|
||||||
|
*size = 0;
|
||||||
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellHddGameSetSystemVer()
|
s32 cellHddGameSetSystemVer()
|
||||||
|
@ -197,11 +200,9 @@ s32 cellHddGameExitBroken()
|
||||||
|
|
||||||
s32 cellGameDataGetSizeKB(vm::ptr<u32> size)
|
s32 cellGameDataGetSizeKB(vm::ptr<u32> size)
|
||||||
{
|
{
|
||||||
cellGame.warning("cellGameDataGetSizeKB(): Unimplemented, returning 0");
|
cellGame.todo("cellGameDataGetSizeKB(size=*0x%x)", size);
|
||||||
if (size)
|
|
||||||
{
|
*size = 0;
|
||||||
*size = 0;
|
|
||||||
}
|
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -669,9 +670,11 @@ error_code cellGameSetParamString(s32 id, vm::cptr<char> buf)
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellGameGetSizeKB()
|
s32 cellGameGetSizeKB(vm::ptr<s32> size)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellGame);
|
cellGame.todo("cellGameGetSizeKB(size=*0x%x)", size);
|
||||||
|
|
||||||
|
*size = 0;
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue