Merge pull request #6647 from aldelaro5/qt-fix-mbp

Qt/Debugger: correctly set the MBP attributes when adding an address one
This commit is contained in:
Léo Lam 2018-04-14 23:22:57 +02:00 committed by GitHub
commit c73b05e200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;