summaryrefslogtreecommitdiff
path: root/Source/Core/Common/MemArena.cpp
diff options
context:
space:
mode:
authorSepalani <sepalani@hotmail.fr>2017-08-17 20:12:44 +0100
committerSepalani <sepalani@hotmail.fr>2017-08-18 20:08:50 +0100
commit4e5fe6366a2041b09616a9a2e3b2ccb038a4d2f1 (patch)
treed0a04d78ee87c80070a963f10341b628c7aaf23c /Source/Core/Common/MemArena.cpp
parent4e40fad248db3dccad901cd200dbc96c03bfbb7f (diff)
CommonFuncs: LastStrerrorString added
Diffstat (limited to 'Source/Core/Common/MemArena.cpp')
-rw-r--r--Source/Core/Common/MemArena.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/MemArena.cpp b/Source/Core/Common/MemArena.cpp
index cff92ce794..082670d2b3 100644
--- a/Source/Core/Common/MemArena.cpp
+++ b/Source/Core/Common/MemArena.cpp
@@ -136,7 +136,7 @@ u8* MemArena::FindMemoryBase()
u8* base = static_cast<u8*>(VirtualAlloc(nullptr, memory_size, MEM_RESERVE, PAGE_READWRITE));
if (!base)
{
- PanicAlert("Failed to map enough memory space: %s", GetLastErrorMsg().c_str());
+ PanicAlert("Failed to map enough memory space: %s", GetLastErrorString().c_str());
return nullptr;
}
VirtualFree(base, 0, MEM_RELEASE);
@@ -153,7 +153,7 @@ u8* MemArena::FindMemoryBase()
void* base = mmap(nullptr, memory_size, PROT_NONE, flags, -1, 0);
if (base == MAP_FAILED)
{
- PanicAlert("Failed to map enough memory space: %s", GetLastErrorMsg().c_str());
+ PanicAlert("Failed to map enough memory space: %s", LastStrerrorString().c_str());
return nullptr;
}
munmap(base, memory_size);