mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-12 18:39:18 +00:00
Allocator: Stop parsing more eagerly
This is a soft-revert of eaf83aa. That change is no longer needed, since the stack special case is handled externally now.
This commit is contained in:
parent
dce9f651fd
commit
f43fe5fd63
@ -274,7 +274,7 @@ namespace FEXCore::Allocator {
|
||||
if (c == ' ') {
|
||||
STEAL_LOG("[%d] ParseEnd; RegionBegin: %016lX RegionEnd: %016lX\n", __LINE__, RegionBegin, RegionEnd);
|
||||
|
||||
if (RegionEnd > End) {
|
||||
if (RegionEnd >= End) {
|
||||
// Early return if we are completely beyond the allocation space.
|
||||
return Regions;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user