win32: fix build. disable appveyor msvc build

This commit is contained in:
Flyinghead 2019-05-22 14:28:11 +02:00
parent c2c0215e1b
commit 94e03b2cfd
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,6 @@ image: Visual Studio 2017
configuration:
- fast
- RelWithDebInfo
platform:
- x64

View File

@ -54,7 +54,8 @@ bool mem_region_unmap_file(void *start, size_t len)
return UnmapViewOfFile(start);
}
static HANDLE mem_handle = INVALID_HANDLE_VALUE, mem_handle2 = INVALID_HANDLE_VALUE;
HANDLE mem_handle = INVALID_HANDLE_VALUE;
static HANDLE mem_handle2 = INVALID_HANDLE_VALUE;
static char * base_alloc = NULL;
// Implement vmem initialization for RAM, ARAM, VRAM and SH4 context, fpcb etc.