MCPcopy Create free account
hub / github.com/aldelaro5/dolphin-memory-engine / setSearchRangeBegin

Method setSearchRangeBegin

Source/MemoryScanner/MemoryScanner.cpp:577–590  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575}
576
577bool 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
592bool MemScanner::setSearchRangeEnd(u32 endRange)
593{

Callers 1

onFirstScanMethod · 0.80

Calls 2

offsetToCacheIndexFunction · 0.85
dolphinAddrToOffsetFunction · 0.85

Tested by

no test coverage detected