fix: Swapped the ResolvedOverlaps Variables (#4405)

This commit is contained in:
Hog
2026-05-14 04:33:39 +01:00
committed by GitHub
parent 0c78ea9bba
commit fb6502b8f1
+2 -2
View File
@@ -501,10 +501,10 @@ BufferCache::OverlapResult BufferCache::ResolveOverlaps(VAddr device_addr, u32 w
// as a stream buffer. Increase the size to skip constantly recreating buffers.
has_stream_leap = true;
if (expands_right) {
expand_begin(CACHING_PAGESIZE * 128);
expand_end(CACHING_PAGESIZE * 128);
}
if (expands_left) {
expand_end(CACHING_PAGESIZE * 128);
expand_begin(CACHING_PAGESIZE * 128);
}
}
}