Fix OrbisKernelBatchMapEntry struct
UE4 games and GTA V cause the BatchMap offset to overflow on Windows. Changing the type fixes this, and doesn't seem to cause any regressions on Windows or Linux.
This commit is contained in:
parent
14e56e267a
commit
4eb2b9bcff
|
@ -63,7 +63,7 @@ struct OrbisVirtualQueryInfo {
|
||||||
|
|
||||||
struct OrbisKernelBatchMapEntry {
|
struct OrbisKernelBatchMapEntry {
|
||||||
void* start;
|
void* start;
|
||||||
off_t offset;
|
size_t offset;
|
||||||
size_t length;
|
size_t length;
|
||||||
char protection;
|
char protection;
|
||||||
char type;
|
char type;
|
||||||
|
|
Loading…
Reference in New Issue