mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
Qt/debugger: properly updates when we break
The Host_UpdateDisasmDialog was unimplemented in Qt which is required to get updates when we break. Additionally, this updates the debugger toolbar.
This commit is contained in:
parent
70ca98c8e7
commit
238c801711
9 changed files with 80 additions and 29 deletions
|
@ -18,11 +18,17 @@ class CodeViewWidget : public QTableWidget
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum class SetAddressUpdate
|
||||
{
|
||||
WithUpdate,
|
||||
WithoutUpdate
|
||||
};
|
||||
|
||||
explicit CodeViewWidget();
|
||||
|
||||
u32 GetAddress() const;
|
||||
u32 GetContextAddress() const;
|
||||
void SetAddress(u32 address);
|
||||
void SetAddress(u32 address, SetAddressUpdate update);
|
||||
|
||||
void Update();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue