mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-14 10:21:21 +00:00
Merge pull request #287 from raven02/patch-28
Use be_t<u32>/<64> in struct
This commit is contained in:
commit
d3cb97d4e9
@ -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…
x
Reference in New Issue
Block a user