mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Compilation fix 2
This commit is contained in:
parent
9b5a3fd2b6
commit
a94d0771fe
1 changed files with 1 additions and 3 deletions
|
@ -37,9 +37,7 @@ bool DynamicMemoryBlockBase<PT>::IsInMyRange(const u64 addr, const u32 size)
|
|||
template<typename PT>
|
||||
bool DynamicMemoryBlockBase<PT>::IsMyAddress(const u64 addr)
|
||||
{
|
||||
if (!IsInMyRange(addr)) return false;
|
||||
|
||||
return Memory.IsGoodAddr(addr);
|
||||
return IsInMyRange(addr);
|
||||
}
|
||||
|
||||
template<typename PT>
|
||||
|
|
Loading…
Add table
Reference in a new issue