summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-11-22 22:35:45 -0500
committerGravatar bunnei2014-12-12 00:15:47 -0500
commit4cb7a44d4e30cd7bc0ec0f07b4b734a7e03f1a3a (patch)
treec8ad6079befffdc1548e9402ca342f15610ad598 /src/core/hle/svc.cpp
parentMerge pull request #256 from Subv/mutex (diff)
downloadyuzu-4cb7a44d4e30cd7bc0ec0f07b4b734a7e03f1a3a.tar.gz
yuzu-4cb7a44d4e30cd7bc0ec0f07b4b734a7e03f1a3a.tar.xz
yuzu-4cb7a44d4e30cd7bc0ec0f07b4b734a7e03f1a3a.zip
MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.
- Linear simply indicates that the mapped physical address is always MappedVAddr+0x0C000000, thus this memory can be used for hardware devices' DMA (such as the GPU).
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index a5805ed05..b99c301d4 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -43,7 +43,7 @@ static Result ControlMemory(u32* out_addr, u32 operation, u32 addr0, u32 addr1,
43 43
44 // Map GSP heap memory 44 // Map GSP heap memory
45 case MEMORY_OPERATION_GSP_HEAP: 45 case MEMORY_OPERATION_GSP_HEAP:
46 *out_addr = Memory::MapBlock_HeapGSP(size, operation, permissions); 46 *out_addr = Memory::MapBlock_HeapLinear(size, operation, permissions);
47 break; 47 break;
48 48
49 // Unknown ControlMemory operation 49 // Unknown ControlMemory operation