Skip to content

Commit

Permalink
Merge pull request #6647 from aldelaro5/qt-fix-mbp
Browse files Browse the repository at this point in the history
Qt/Debugger: correctly set the MBP attributes when adding an address one
  • Loading branch information
leoetlino committed Apr 14, 2018
2 parents ee955e3 + 1401fbc commit c73b05e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/DolphinQt2/Debugger/BreakpointWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ void BreakpointWidget::AddAddressMBP(u32 addr, bool on_read, bool on_write, bool
TMemCheck check;

check.start_address = addr;
check.end_address = addr;
check.is_ranged = false;
check.is_break_on_read = on_read;
check.is_break_on_write = on_write;
check.log_on_hit = do_log;
Expand Down

0 comments on commit c73b05e

Please sign in to comment.