diff options
| author | 2015-02-20 16:53:22 +0000 | |
|---|---|---|
| committer | 2015-02-20 16:54:10 +0000 | |
| commit | 54d6f6c82b230b4934b1d52e6c2cf5f9d0d36396 (patch) | |
| tree | ccb75b767a8228c3d27ffbdc37dd761c1cd332c4 /src/common/mem_arena.cpp | |
| parent | Merge pull request #588 from archshift/somebranch (diff) | |
| download | yuzu-54d6f6c82b230b4934b1d52e6c2cf5f9d0d36396.tar.gz yuzu-54d6f6c82b230b4934b1d52e6c2cf5f9d0d36396.tar.xz yuzu-54d6f6c82b230b4934b1d52e6c2cf5f9d0d36396.zip | |
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.cpp | 2 |
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) | |||
| 116 | GetSystemInfo(&sysInfo); | 116 | GetSystemInfo(&sysInfo); |
| 117 | #elif defined(ANDROID) | 117 | #elif defined(ANDROID) |
| 118 | // Use ashmem so we don't have to allocate a file on disk! | 118 | // Use ashmem so we don't have to allocate a file on disk! |
| 119 | fd = ashmem_create_region("PPSSPP_RAM", size); | 119 | fd = ashmem_create_region("Citra_RAM", size); |
| 120 | // Note that it appears that ashmem is pinned by default, so no need to pin. | 120 | // Note that it appears that ashmem is pinned by default, so no need to pin. |
| 121 | if (fd < 0) | 121 | if (fd < 0) |
| 122 | { | 122 | { |