mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Use be_t<u32>/<64>
This commit is contained in:
parent
a0cc3a0fb0
commit
97561ff52b
|
|
@ -111,8 +111,8 @@ struct CellPngDecOutParam
|
|||
//Custom structs
|
||||
struct CellPngDecSubHandle
|
||||
{
|
||||
u32 fd;
|
||||
u64 fileSize;
|
||||
be_t<u32> fd;
|
||||
be_t<u64> fileSize;
|
||||
CellPngDecInfo info;
|
||||
CellPngDecOutParam outParam;
|
||||
CellPngDecSrc src;
|
||||
|
|
@ -120,7 +120,7 @@ struct CellPngDecSubHandle
|
|||
|
||||
struct CellPngDecMainHandle
|
||||
{
|
||||
u32 mainHandle;
|
||||
u32 threadInParam;
|
||||
u32 threadOutParam;
|
||||
be_t<u32> mainHandle;
|
||||
be_t<u32> threadInParam;
|
||||
be_t<u32> threadOutParam;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue