diff --git a/docs/graphics/debugger_main.png b/docs/graphics/debugger_main.png index d6831b9ad..88e7c445f 100644 Binary files a/docs/graphics/debugger_main.png and b/docs/graphics/debugger_main.png differ diff --git a/docs/graphics/debugger_romcmenu.png b/docs/graphics/debugger_romcmenu.png index f6cd561a3..92fe7003a 100644 Binary files a/docs/graphics/debugger_romcmenu.png and b/docs/graphics/debugger_romcmenu.png differ diff --git a/docs/graphics/resources/debugger_main.pdn b/docs/graphics/resources/debugger_main.pdn index 8bda69f74..0f4d893a6 100644 Binary files a/docs/graphics/resources/debugger_main.pdn and b/docs/graphics/resources/debugger_main.pdn differ diff --git a/src/debugger/TimerMap.hxx b/src/debugger/TimerMap.hxx index bd466dd95..8b6b2e305 100644 --- a/src/debugger/TimerMap.hxx +++ b/src/debugger/TimerMap.hxx @@ -48,20 +48,6 @@ class TimerMap TimerPoint() : addr{0}, bank(ANY_BANK) {} -#if 0 // unused - bool operator==(const TimerPoint& other) const - { - if(addr == other.addr) - { - if(bank == ANY_BANK || other.bank == ANY_BANK) - return true; - else - return bank == other.bank; - } - return false; - } -#endif - bool operator<(const TimerPoint& other) const { if(bank == ANY_BANK || other.bank == ANY_BANK) @@ -111,33 +97,6 @@ class TimerMap Timer(TimerPoint(addr, bank), c_mirrors, c_anyBank); } -#if 0 // unused - bool operator==(const Timer& other) const - { - cerr << from.addr << ", " << to.addr << endl; - if(from.addr == other.from.addr && to.addr == other.to.addr) - { - if((from.bank == ANY_BANK || other.from.bank == ANY_BANK) && - (to.bank == ANY_BANK || other.to.bank == ANY_BANK)) - return true; - else - return from.bank == other.from.bank && to.bank == other.to.bank; - } - return false; - } - - bool operator<(const Timer& other) const - { - if(from.bank < other.from.bank || (from.bank == other.from.bank && from.addr < other.from.addr)) - return true; - - if(from.bank == other.from.bank && from.addr == other.from.addr) - return to.bank < other.to.bank || (to.bank == other.to.bank && to.addr < other.to.addr); - - return false; - } -#endif - void setTo(const TimerPoint& tp, bool c_mirrors = false, bool c_anyBank = false) { to = tp;