[Debugger] Fix CBreakpoints::WriteBPExists32

This commit is contained in:
zilmar 2018-02-13 17:37:27 +11:00
parent 91999a1eba
commit f28823ec50
1 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ CBreakpoints::BPSTATE CBreakpoints::WriteBPExists16(uint32_t address)
CBreakpoints::BPSTATE CBreakpoints::WriteBPExists32(uint32_t address)
{
breakpoints_t::const_iterator itr = m_WriteMem16.find(address);
breakpoints_t::const_iterator itr = m_WriteMem32.find(address);
if (itr != m_WriteMem32.end())
{
return BP_SET;
@ -230,7 +230,7 @@ CBreakpoints::BPSTATE CBreakpoints::WriteBPExists32(uint32_t address)
CBreakpoints::BPSTATE CBreakpoints::WriteBPExists64(uint32_t address)
{
breakpoints_t::const_iterator itr = m_WriteMem16.find(address);
breakpoints_t::const_iterator itr = m_WriteMem64.find(address);
if (itr != m_WriteMem64.end())
{
return BP_SET;