Merge pull request #287 from raven02/patch-28

Use be_t<u32>/<64> in struct
This commit is contained in:
Alexandro Sánchez Bach 2014-05-31 01:40:51 +02:00
commit d3cb97d4e9

View File

@ -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;
};