Browse Source
make KCodeMemory::GetSourceAddress const
Co-authored-by: Mai M. <mathew1800@gmail.com>
pull/15/merge
itsmeft24
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/k_code_memory.h
|
|
|
@ -46,7 +46,7 @@ public: |
|
|
|
KProcess* GetOwner() const { |
|
|
|
return m_owner; |
|
|
|
} |
|
|
|
VAddr GetSourceAddress() { |
|
|
|
VAddr GetSourceAddress() const { |
|
|
|
return m_address; |
|
|
|
} |
|
|
|
size_t GetSize() const { |
|
|
|
|