summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/shared_memory.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-19 14:50:28 +0100
committerLioncash <mathew1800@gmail.com>2018-11-19 15:20:29 +0100
commit76ac234bf66a5cad7898056dcd33f52d2c38a232 (patch)
treee8f6ab5b2f6bb76e4f85df713e429e17ccc4f885 /src/core/hle/kernel/shared_memory.h
parentkernel/shared_memory: Make data members private (diff)
downloadyuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.tar
yuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.tar.gz
yuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.tar.bz2
yuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.tar.lz
yuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.tar.xz
yuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.tar.zst
yuzu-76ac234bf66a5cad7898056dcd33f52d2c38a232.zip
Diffstat (limited to 'src/core/hle/kernel/shared_memory.h')
-rw-r--r--src/core/hle/kernel/shared_memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/shared_memory.h b/src/core/hle/kernel/shared_memory.h
index 9a7c189e8..7d7d6486d 100644
--- a/src/core/hle/kernel/shared_memory.h
+++ b/src/core/hle/kernel/shared_memory.h
@@ -115,7 +115,7 @@ public:
* @param offset Offset from the start of the shared memory block to get pointer
* @return Pointer to the shared memory block from the specified offset
*/
- u8* GetPointer(u32 offset = 0);
+ u8* GetPointer(std::size_t offset = 0);
private:
explicit SharedMemory(KernelCore& kernel);