early-access version 3560

This commit is contained in:
pineappleEA 2023-05-07 02:33:16 +02:00
parent fc768baebc
commit 9f7d9cd3f1
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 3559.
This is the source code for early-access 3560.
## Legal Notice

View File

@ -72,7 +72,7 @@ MAP_MEMBER(void)::MapLocked(VaType virt, PaType phys, VaType size, ExtraBlockInf
}
}()};
if (block_end_predecessor->virt >= virt) {
if (block_end_predecessor != blocks.begin() && block_end_predecessor->virt >= virt) {
// If this block's start would be overlapped by the map then reuse it as a tail
// block
block_end_predecessor->virt = virt_end;