summaryrefslogtreecommitdiff
path: root/src/common/mem_arena.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-02-20 13:26:15 -0500
committerbunnei <bunneidev@gmail.com>2015-02-20 13:26:15 -0500
commit3c5aaafb402dec431517faeb49a4b30c5ac42495 (patch)
treeccb75b767a8228c3d27ffbdc37dd761c1cd332c4 /src/common/mem_arena.cpp
parent5f9939070e81691e04facca9ff431070988e5b05 (diff)
parent54d6f6c82b230b4934b1d52e6c2cf5f9d0d36396 (diff)
Merge pull request #590 from linkmauve/rename-dolphin
Common: Change names containing “Dolphin” or “PPSSPP” to something more generic
Diffstat (limited to 'src/common/mem_arena.cpp')
-rw-r--r--src/common/mem_arena.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mem_arena.cpp b/src/common/mem_arena.cpp
index cc31a88cc..76c70701d 100644
--- a/src/common/mem_arena.cpp
+++ b/src/common/mem_arena.cpp
@@ -116,7 +116,7 @@ void MemArena::GrabLowMemSpace(size_t size)
GetSystemInfo(&sysInfo);
#elif defined(ANDROID)
// Use ashmem so we don't have to allocate a file on disk!
- fd = ashmem_create_region("PPSSPP_RAM", size);
+ fd = ashmem_create_region("Citra_RAM", size);
// Note that it appears that ashmem is pinned by default, so no need to pin.
if (fd < 0)
{