diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-13 01:08:50 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-13 01:08:50 +0100 |
commit | 542a5393acae66a9add32c195939b058bf154b15 (patch) | |
tree | 97014f1f52bd206b4481fff07cd3ded01753cf98 /src/rw/MemoryMgr.cpp | |
parent | Merge pull request #956 from withmorten/miami (diff) | |
download | re3-542a5393acae66a9add32c195939b058bf154b15.tar re3-542a5393acae66a9add32c195939b058bf154b15.tar.gz re3-542a5393acae66a9add32c195939b058bf154b15.tar.bz2 re3-542a5393acae66a9add32c195939b058bf154b15.tar.lz re3-542a5393acae66a9add32c195939b058bf154b15.tar.xz re3-542a5393acae66a9add32c195939b058bf154b15.tar.zst re3-542a5393acae66a9add32c195939b058bf154b15.zip |
Diffstat (limited to '')
-rw-r--r-- | src/rw/MemoryMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rw/MemoryMgr.cpp b/src/rw/MemoryMgr.cpp index e2f6f144..2379692c 100644 --- a/src/rw/MemoryMgr.cpp +++ b/src/rw/MemoryMgr.cpp @@ -93,7 +93,7 @@ MemoryMgrFree(void *ptr) void * RwMallocAlign(RwUInt32 size, RwUInt32 align) { -#ifdef FIX_BUGS +#if defined (FIX_BUGS) || defined(FIX_BUGS_64) uintptr ptralign = align-1; void *mem = (void *)MemoryMgrMalloc(size + sizeof(uintptr) + ptralign); |