summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/MemoryUtil.cpp
diff options
context:
space:
mode:
authorSonicadvance1 <sonicadvance1@gmail.com>2010-03-05 10:07:49 +0000
committerSonicadvance1 <sonicadvance1@gmail.com>2010-03-05 10:07:49 +0000
commit7cf32053fe8ae1a4fa3470348aa34ca81e502fa0 (patch)
tree8e18d659679cd0a008f2eb2cdd54c806ab3b7242 /Source/Core/Common/Src/MemoryUtil.cpp
parent56a1e15f415675202d8104c752376f0ccd7b4b75 (diff)
Gah, screw it
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5159 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/MemoryUtil.cpp')
-rw-r--r--Source/Core/Common/Src/MemoryUtil.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Core/Common/Src/MemoryUtil.cpp b/Source/Core/Common/Src/MemoryUtil.cpp
index 338d62cb88..60689c1aa9 100644
--- a/Source/Core/Common/Src/MemoryUtil.cpp
+++ b/Source/Core/Common/Src/MemoryUtil.cpp
@@ -61,13 +61,6 @@ void* AllocateExecutableMemory(size_t size, bool low)
#endif
, -1, 0); // | MAP_FIXED
// printf("Mapped executable memory at %p (size %i)\n", retval, size);
-
- if (((u64)retval >= 0x80000000) && low)
- {
- // Should only happen in 64bit OSX
- // Just a reminder, to show a OSX user that it may fail
- PanicAlert("Executable memory ended up above 2GB!");
- }
if (!retval)
{