mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 23:58:59 +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
|
@ -14,6 +14,7 @@
|
|||
#include "Core/Debugger/PPCDebugInterface.h"
|
||||
#include "Core/Host.h"
|
||||
#include "Core/PowerPC/PowerPC.h"
|
||||
#include "DolphinQt2/QtUtils/RunOnObject.h"
|
||||
#include "DolphinQt2/Settings.h"
|
||||
#include "VideoCommon/RenderBase.h"
|
||||
#include "VideoCommon/VideoConfig.h"
|
||||
|
@ -109,6 +110,10 @@ void Host_YieldToUI()
|
|||
|
||||
void Host_UpdateDisasmDialog()
|
||||
{
|
||||
RunOnObject(QApplication::instance(), [&] {
|
||||
emit Host::GetInstance()->UpdateDisasmDialog();
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
void Host_UpdateProgressDialog(const char* caption, int position, int total)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue