Fix savestate hash match issue with Saturnus
This commit is contained in:
parent
77a535a7d8
commit
36a84bd0dd
|
@ -48,7 +48,7 @@ namespace BizHawk.Emulation.Cores.Waterbox
|
||||||
}
|
}
|
||||||
|
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum MemoryDomainFlags : int
|
public enum MemoryDomainFlags : long
|
||||||
{
|
{
|
||||||
None = 0,
|
None = 0,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Binary file not shown.
|
@ -21,7 +21,7 @@ typedef struct
|
||||||
void* Data;
|
void* Data;
|
||||||
const char* Name;
|
const char* Name;
|
||||||
int64_t Size;
|
int64_t Size;
|
||||||
int32_t Flags;
|
int64_t Flags;
|
||||||
} MemoryArea;
|
} MemoryArea;
|
||||||
|
|
||||||
#define MEMORYAREA_FLAGS_WRITABLE 1
|
#define MEMORYAREA_FLAGS_WRITABLE 1
|
||||||
|
|
Loading…
Reference in New Issue