mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
cellPngDec fixes and some rewritings
* This commit solves the cellPngDec GetMemFromAddr(0x0) error when loading PNGs from files. * cellVideoOutGetResolution, cellRtc* syscalls rewritten to use the use the mem*_t data types. * Replaced int/uint with s32/u32 in some syscall arguments and structs.
This commit is contained in:
parent
c294f5318f
commit
81cdaa883a
12 changed files with 344 additions and 334 deletions
|
@ -215,14 +215,14 @@ struct CellHddGameStatGet
|
|||
|
||||
struct CellHddGameStatSet
|
||||
{
|
||||
CellHddGameSystemFileParam *setParam;
|
||||
u32 reserved_addr; // void*
|
||||
mem_beptr_t<CellHddGameSystemFileParam> setParam;
|
||||
be_t<u32> reserved_addr; // void*
|
||||
};
|
||||
|
||||
struct CellHddGameCBResult
|
||||
{
|
||||
be_t<u32> result;
|
||||
be_t<s32> errNeedSizeKB;
|
||||
u8 *invalidMsg;
|
||||
u32 reserved_addr; // void*
|
||||
be_t<u32> invalidMsg_addr; // char*
|
||||
be_t<u32> reserved_addr; // void*
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue