Fix savestate hash match issue with Saturnus

This commit is contained in:
nattthebear 2017-08-13 17:21:00 -04:00
parent 77a535a7d8
commit 36a84bd0dd
3 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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