| 15 | #include "../DolphinProcess/DolphinAccessor.h" |
| 16 | |
| 17 | MemWatchEntry::MemWatchEntry(QString label, const u32 consoleAddress, const Common::MemType type, |
| 18 | const Common::MemBase base, const bool isUnsigned, const size_t length, |
| 19 | const bool isBoundToPointer, const bool absoluteBranch) |
| 20 | : m_label(std::move(label)), m_consoleAddress(consoleAddress), m_type(type), m_base(base), |
| 21 | m_isUnsigned(isUnsigned), m_absoluteBranch(absoluteBranch), |
| 22 | m_boundToPointer(isBoundToPointer), m_length(length) |
| 23 | |
| 24 | { |
| 25 | m_memory = new char[getSizeForType(m_type, m_length)]; |
| 26 | m_curActualAddress = getActualAddress(); |
| 27 | } |
| 28 | |
| 29 | MemWatchEntry::MemWatchEntry() |
| 30 | { |
nothing calls this directly
no test coverage detected