mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #1902 from mimimi085181/master
Fix another small bug with the efb2ram cache
This commit is contained in:
commit
dbdae093cc
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ bool TextureCache::Find(u32 start_address, u64 hash)
|
|||
|
||||
bool TextureCache::TCacheEntryBase::OverlapsMemoryRange(u32 range_address, u32 range_size) const
|
||||
{
|
||||
if (addr + size_in_bytes < range_address)
|
||||
if (addr + size_in_bytes <= range_address)
|
||||
return false;
|
||||
|
||||
if (addr >= range_address + range_size)
|
||||
|
|
Loading…
Add table
Reference in a new issue