core/memory.*:constify GetPhysicalPointer;

audio_core\hle\source.h: constify `memory_system`
This commit is contained in:
SachinVin 2023-07-09 16:37:28 +05:30
parent 662bb9ba77
commit 1cb34ea0d3
3 changed files with 3 additions and 3 deletions

View file

@ -643,7 +643,7 @@ std::string MemorySystem::ReadCString(VAddr vaddr, std::size_t max_length) {
return string;
}
u8* MemorySystem::GetPhysicalPointer(PAddr address) {
u8* MemorySystem::GetPhysicalPointer(PAddr address) const {
return GetPhysicalRef(address);
}