summaryrefslogtreecommitdiff
path: root/src/common/host_memory.cpp
diff options
context:
space:
mode:
authorGravatar Morph2021-06-19 04:40:58 -0400
committerGravatar GitHub2021-06-19 04:40:58 -0400
commit03da34b330a0386058b25122f89da10a07d65cd0 (patch)
tree57819bf25691e5010624decaaaa8f1fbd7c22868 /src/common/host_memory.cpp
parentMerge pull request #6484 from CaptV0rt3x/discord-rpc (diff)
parenthost_memory: Correct MEM_RESERVE_PLACEHOLDER (diff)
downloadyuzu-03da34b330a0386058b25122f89da10a07d65cd0.tar.gz
yuzu-03da34b330a0386058b25122f89da10a07d65cd0.tar.xz
yuzu-03da34b330a0386058b25122f89da10a07d65cd0.zip
Merge pull request #6494 from lat9nq/mingw-fix-fastmem
host_memory: Correct MEM_RESERVE_PLACEHOLDER
Diffstat (limited to 'src/common/host_memory.cpp')
-rw-r--r--src/common/host_memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp
index 8bd70abc7..2a5a7596c 100644
--- a/src/common/host_memory.cpp
+++ b/src/common/host_memory.cpp
@@ -34,7 +34,7 @@ constexpr size_t HugePageSize = 0x200000;
34 34
35// Manually imported for MinGW compatibility 35// Manually imported for MinGW compatibility
36#ifndef MEM_RESERVE_PLACEHOLDER 36#ifndef MEM_RESERVE_PLACEHOLDER
37#define MEM_RESERVE_PLACEHOLDER 0x0004000 37#define MEM_RESERVE_PLACEHOLDER 0x00040000
38#endif 38#endif
39#ifndef MEM_REPLACE_PLACEHOLDER 39#ifndef MEM_REPLACE_PLACEHOLDER
40#define MEM_REPLACE_PLACEHOLDER 0x00004000 40#define MEM_REPLACE_PLACEHOLDER 0x00004000