Common: Change names containing “Dolphin” or “PPSSPP” to something more generic.

This commit is contained in:
Emmanuel Gil Peyrot 2015-02-20 16:53:22 +00:00
parent 5f9939070e
commit 54d6f6c82b
2 changed files with 8 additions and 8 deletions

View file

@ -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)
{