This commit is contained in:
James Groom 2019-01-26 19:18:52 +10:00 committed by GitHub
parent a2289d554c
commit 41cf11f8b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ namespace BizHawk.Common.BizInvoke
// ? (MemoryBlock) new MemoryBlockUnix(start, size)
// : (MemoryBlock) new MemoryBlockWin32(start, size);
if (PlatformLinkedLibSingleton.RunningOnUnix)
throw new InvalidOperationException("ctor of nonfunctional MemoryBlockUnix class")
throw new InvalidOperationException("ctor of nonfunctional MemoryBlockUnix class");
return new MemoryBlockWin32(start, size);
}