summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/transfer_memory.cpp4
-rw-r--r--src/core/hle/kernel/transfer_memory.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/kernel/transfer_memory.cpp b/src/core/hle/kernel/transfer_memory.cpp
index cad063e4d..1dd65468d 100644
--- a/src/core/hle/kernel/transfer_memory.cpp
+++ b/src/core/hle/kernel/transfer_memory.cpp
@@ -36,6 +36,10 @@ std::shared_ptr<TransferMemory> TransferMemory::Create(KernelCore& kernel,
36 return transfer_memory; 36 return transfer_memory;
37} 37}
38 38
39u8* TransferMemory::GetPointer() {
40 return memory.GetPointer(base_address);
41}
42
39const u8* TransferMemory::GetPointer() const { 43const u8* TransferMemory::GetPointer() const {
40 return memory.GetPointer(base_address); 44 return memory.GetPointer(base_address);
41} 45}
diff --git a/src/core/hle/kernel/transfer_memory.h b/src/core/hle/kernel/transfer_memory.h
index 521951424..59328c0fe 100644
--- a/src/core/hle/kernel/transfer_memory.h
+++ b/src/core/hle/kernel/transfer_memory.h
@@ -57,6 +57,9 @@ public:
57 } 57 }
58 58
59 /// Gets a pointer to the backing block of this instance. 59 /// Gets a pointer to the backing block of this instance.
60 u8* GetPointer();
61
62 /// Gets a pointer to the backing block of this instance.
60 const u8* GetPointer() const; 63 const u8* GetPointer() const;
61 64
62 /// Gets the size of the memory backing this instance in bytes. 65 /// Gets the size of the memory backing this instance in bytes.