mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Expand conditional breakpoints to memory breakpoints
This commit is contained in:
parent
6abcaadd5a
commit
a17fbe7c65
9 changed files with 88 additions and 49 deletions
|
@ -16,6 +16,7 @@ class QGroupBox;
|
|||
class QLabel;
|
||||
class QLineEdit;
|
||||
class QRadioButton;
|
||||
class QPushButton;
|
||||
|
||||
class BreakpointDialog : public QDialog
|
||||
{
|
||||
|
@ -46,8 +47,6 @@ private:
|
|||
QRadioButton* m_instruction_bp;
|
||||
QGroupBox* m_instruction_box;
|
||||
QLineEdit* m_instruction_address;
|
||||
QLineEdit* m_instruction_condition;
|
||||
QPushButton* m_cond_help_btn;
|
||||
|
||||
// Memory BPs
|
||||
QRadioButton* m_memory_bp;
|
||||
|
@ -67,6 +66,9 @@ private:
|
|||
QRadioButton* m_do_break;
|
||||
QRadioButton* m_do_log_and_break;
|
||||
|
||||
QLineEdit* m_conditional;
|
||||
QPushButton* m_cond_help_btn;
|
||||
|
||||
QDialogButtonBox* m_buttons;
|
||||
BreakpointWidget* m_parent;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue