Fixed intersecting memory region detection bug
This commit is contained in:
@@ -49,7 +49,7 @@ namespace Bloom::Targets
|
|||||||
[[nodiscard]] bool intersectsWith(const TargetMemoryAddressRange& other) const {
|
[[nodiscard]] bool intersectsWith(const TargetMemoryAddressRange& other) const {
|
||||||
return
|
return
|
||||||
(other.startAddress <= this->startAddress && other.endAddress >= this->startAddress)
|
(other.startAddress <= this->startAddress && other.endAddress >= this->startAddress)
|
||||||
|| (other.endAddress >= this->endAddress && other.startAddress <= this->endAddress)
|
|| (other.startAddress >= this->startAddress && other.startAddress <= this->endAddress)
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user