From 91cb8ea1c9633e2504eb63ca3f70ca8ae9d1e700 Mon Sep 17 00:00:00 2001 From: Toad King Date: Sun, 31 Aug 2014 23:53:48 -0400 Subject: [PATCH] typo --- Common/MemoryUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/MemoryUtil.cpp b/Common/MemoryUtil.cpp index 50908b4e08..b9400383c5 100644 --- a/Common/MemoryUtil.cpp +++ b/Common/MemoryUtil.cpp @@ -76,7 +76,7 @@ static void *SearchForFreeMem(size_t size) while (VirtualQuery((void *)last_addr, &info, sizeof(info)) == sizeof(info)) { // went too far, unusable for executable memory - if (last_addr + 0x80000000 < (uintptr_t) &hint_loction) + if (last_addr + 0x80000000 < (uintptr_t) &hint_location) return NULL; uintptr_t end = last_addr + size;