diff options
| author | comex <comexk@gmail.com> | 2014-09-17 22:30:20 -0400 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2014-09-17 22:30:20 -0400 |
| commit | 6695b5acce8b89dbfb434ada33f97cdc5e61bc0c (patch) | |
| tree | cf106b152e907de828b0a4c41db6d8d43e94210a /Source/Core | |
| parent | 97c9cb5882552b2cc5a404f49ffb864ab5e31b21 (diff) | |
Fix backwards #ifdef.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64/Jit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index b774881bb8..30a5f7bb01 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -129,7 +129,7 @@ enum void Jit64::AllocStack() { -#if defined(_WIN32) +#ifndef _WIN32 m_stack = (u8*)AllocateMemoryPages(STACK_SIZE); ReadProtectMemory(m_stack, GUARD_SIZE); ReadProtectMemory(m_stack + GUARD_OFFSET, GUARD_SIZE); @@ -138,7 +138,7 @@ void Jit64::AllocStack() void Jit64::FreeStack() { -#if defined(_WIN32) +#ifndef _WIN32 if (m_stack) { FreeMemoryPages(m_stack, STACK_SIZE); |
