mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Compare commits
2 commits
a70fecb111
...
f5326644fa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f5326644fa | ||
|
|
da66743ea5 |
|
|
@ -447,10 +447,6 @@ std::pair<rx::AddressRange, orbis::ErrorCode> orbis::vmem::mapFile(
|
|||
if (prot & Protection::CpuExec) {
|
||||
return {{}, ErrorCode::ACCES};
|
||||
}
|
||||
|
||||
if (alignment < dmem::kPageSize) {
|
||||
alignment = dmem::kPageSize;
|
||||
}
|
||||
}
|
||||
|
||||
if (allocFlags & AllocationFlags::Fixed) {
|
||||
|
|
|
|||
|
|
@ -625,7 +625,7 @@ public:
|
|||
bool lastRemovedIsOpen = false;
|
||||
PayloadT lastRemovedOpenPayload;
|
||||
if (noOverride && !beginInserted && !endInserted &&
|
||||
std::next(beginIt) == endIt) {
|
||||
std::next(beginIt) == endIt && !beginIt->second.isClose()) {
|
||||
return beginIt;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue