Browse Source
Merge pull request #13070 from liamwhite/offset
am: account for offset in transfer memory storage
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
src/core/hle/service/am/library_applet_storage.cpp
|
|
|
@ -70,7 +70,7 @@ public: |
|
|
|
Result Read(s64 offset, void* buffer, size_t size) override { |
|
|
|
R_TRY(ValidateOffset(offset, size, m_size)); |
|
|
|
|
|
|
|
m_memory.ReadBlock(m_trmem->GetSourceAddress(), buffer, size); |
|
|
|
m_memory.ReadBlock(m_trmem->GetSourceAddress() + offset, buffer, size); |
|
|
|
|
|
|
|
R_SUCCEED(); |
|
|
|
} |
|
|
|
@ -79,7 +79,7 @@ public: |
|
|
|
R_UNLESS(m_is_writable, ResultUnknown); |
|
|
|
R_TRY(ValidateOffset(offset, size, m_size)); |
|
|
|
|
|
|
|
m_memory.WriteBlock(m_trmem->GetSourceAddress(), buffer, size); |
|
|
|
m_memory.WriteBlock(m_trmem->GetSourceAddress() + offset, buffer, size); |
|
|
|
|
|
|
|
R_SUCCEED(); |
|
|
|
} |
|
|
|
|