summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorGravatar german772021-04-22 13:15:59 -0500
committerGravatar german772021-04-23 22:12:41 -0500
commitc19ad21ae855c9143a871e378e8d8c59abcaebfa (patch)
tree90499012c2bcac1620ca69e4ef6b10edb5ffe009 /src/core/hle/kernel
parentMerge pull request #6224 from Morph1984/hid_InitializeSevenSixAxisSensor (diff)
downloadyuzu-c19ad21ae855c9143a871e378e8d8c59abcaebfa.tar.gz
yuzu-c19ad21ae855c9143a871e378e8d8c59abcaebfa.tar.xz
yuzu-c19ad21ae855c9143a871e378e8d8c59abcaebfa.zip
hid: Implement SevenSixAxis and ConsoleSixAxisSensor
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.