mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
[Core] scekernel endian fixes
This commit is contained in:
parent
451e80c5c8
commit
075a960f7f
1 changed files with 7 additions and 7 deletions
|
@ -613,13 +613,13 @@ KernelObject *KernelObjectPool::CreateByIDType(int type)
|
|||
}
|
||||
|
||||
struct SystemStatus {
|
||||
SceSize size;
|
||||
SceUInt status;
|
||||
SceUInt clockPart1;
|
||||
SceUInt clockPart2;
|
||||
SceUInt perfcounter1;
|
||||
SceUInt perfcounter2;
|
||||
SceUInt perfcounter3;
|
||||
SceSize_le size;
|
||||
SceUInt_le status;
|
||||
SceUInt_le clockPart1;
|
||||
SceUInt_le clockPart2;
|
||||
SceUInt_le perfcounter1;
|
||||
SceUInt_le perfcounter2;
|
||||
SceUInt_le perfcounter3;
|
||||
};
|
||||
|
||||
int sceKernelReferSystemStatus(u32 statusPtr) {
|
||||
|
|
Loading…
Add table
Reference in a new issue