early-access version 3560
This commit is contained in:
parent
fc768baebc
commit
9f7d9cd3f1
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue