| 575 | } |
| 576 | |
| 577 | bool MemScanner::setSearchRangeBegin(u32 beginRange) |
| 578 | { |
| 579 | if (!DolphinComm::DolphinAccessor::isValidConsoleAddress(beginRange)) |
| 580 | { |
| 581 | return false; |
| 582 | } |
| 583 | |
| 584 | m_searchInRangeBegin = true; |
| 585 | bool aram = DolphinComm::DolphinAccessor::isARAMAccessible(); |
| 586 | m_beginSearchRange = |
| 587 | Common::offsetToCacheIndex(Common::dolphinAddrToOffset(beginRange, aram), aram); |
| 588 | |
| 589 | return true; |
| 590 | } |
| 591 | |
| 592 | bool MemScanner::setSearchRangeEnd(u32 endRange) |
| 593 | { |
no test coverage detected