summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar itsmeft242021-12-07 07:58:33 -0500
committerGravatar GitHub2021-12-07 07:58:33 -0500
commitd19724688022952c37143dc189240916910b0c6f (patch)
tree1b520510251a646984748745b0381f9ddd8530e0
parentfix formatting (diff)
downloadyuzu-d19724688022952c37143dc189240916910b0c6f.tar.gz
yuzu-d19724688022952c37143dc189240916910b0c6f.tar.xz
yuzu-d19724688022952c37143dc189240916910b0c6f.zip
make KCodeMemory::GetSourceAddress const
Co-authored-by: Mai M. <mathew1800@gmail.com>
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_code_memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_code_memory.h b/src/core/hle/kernel/k_code_memory.h
index e8e83a0e5..c45939afa 100644
--- a/src/core/hle/kernel/k_code_memory.h
+++ b/src/core/hle/kernel/k_code_memory.h
@@ -46,7 +46,7 @@ public:
46 KProcess* GetOwner() const { 46 KProcess* GetOwner() const {
47 return m_owner; 47 return m_owner;
48 } 48 }
49 VAddr GetSourceAddress() { 49 VAddr GetSourceAddress() const {
50 return m_address; 50 return m_address;
51 } 51 }
52 size_t GetSize() const { 52 size_t GetSize() const {