mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 04:25:12 +00:00
Static assert for VirtualQueryInfo struct size
Since compilers can be weird, having a static assert for this will be helpful. Granted, this probably wont need changing after this PR.
This commit is contained in:
parent
10879cad78
commit
69a99bfc28
@ -68,6 +68,8 @@ struct OrbisVirtualQueryInfo {
|
||||
u8 is_committed : 1;
|
||||
char name[ORBIS_KERNEL_MAXIMUM_NAME_LENGTH];
|
||||
};
|
||||
static_assert(sizeof(OrbisVirtualQueryInfo) == 72,
|
||||
"OrbisVirtualQueryInfo struct size is incorrect");
|
||||
|
||||
struct OrbisKernelBatchMapEntry {
|
||||
void* start;
|
||||
|
Loading…
Reference in New Issue
Block a user