mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 12:34:37 +00:00
Reduce bitfield size
Linux compilers automatically convert this, Windows not so much.
This commit is contained in:
parent
7eea1fc4d6
commit
10879cad78
@ -61,11 +61,11 @@ struct OrbisVirtualQueryInfo {
|
||||
size_t offset;
|
||||
s32 protection;
|
||||
s32 memory_type;
|
||||
u32 is_flexible : 1;
|
||||
u32 is_direct : 1;
|
||||
u32 is_stack : 1;
|
||||
u32 is_pooled : 1;
|
||||
u32 is_committed : 1;
|
||||
u8 is_flexible : 1;
|
||||
u8 is_direct : 1;
|
||||
u8 is_stack : 1;
|
||||
u8 is_pooled : 1;
|
||||
u8 is_committed : 1;
|
||||
char name[ORBIS_KERNEL_MAXIMUM_NAME_LENGTH];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user