mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 12:34:37 +00:00
Fix clang-format
This commit is contained in:
parent
188b35db93
commit
580ae15c19
@ -168,10 +168,8 @@ int PS4_SYSV_ABI sceKernelUuidCreate(OrbisKernelUuid* orbisUuid) {
|
|||||||
#else
|
#else
|
||||||
uuid_t uuid;
|
uuid_t uuid;
|
||||||
uuid_generate(uuid);
|
uuid_generate(uuid);
|
||||||
orbisUuid->timeLow = ((u32)uuid[0] << 24) |
|
orbisUuid->timeLow =
|
||||||
((u32)uuid[1] << 16) |
|
((u32)uuid[0] << 24) | ((u32)uuid[1] << 16) | ((u32)uuid[2] << 8) | (u32)uuid[3];
|
||||||
((u32)uuid[2] << 8) |
|
|
||||||
(u32)uuid[3];
|
|
||||||
orbisUuid->timeMid = ((u16)uuid[4] << 8) | uuid[5];
|
orbisUuid->timeMid = ((u16)uuid[4] << 8) | uuid[5];
|
||||||
orbisUuid->timeHiAndVersion = ((u16)uuid[6] << 8) | uuid[7];
|
orbisUuid->timeHiAndVersion = ((u16)uuid[6] << 8) | uuid[7];
|
||||||
orbisUuid->clockSeqHiAndReserved = uuid[8];
|
orbisUuid->clockSeqHiAndReserved = uuid[8];
|
||||||
|
Loading…
Reference in New Issue
Block a user