mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Qt/Debugger: Refresh windows on savestate load.
This commit is contained in:
parent
744abab478
commit
330c80055d
7 changed files with 26 additions and 1 deletions
|
@ -19,6 +19,7 @@
|
|||
#include "Core/Host.h"
|
||||
#include "Core/NetPlayProto.h"
|
||||
#include "Core/PowerPC/PowerPC.h"
|
||||
#include "Core/State.h"
|
||||
|
||||
#include "DolphinQt/QtUtils/QueueOnObject.h"
|
||||
#include "DolphinQt/Settings.h"
|
||||
|
@ -30,7 +31,15 @@
|
|||
#include "VideoCommon/RenderBase.h"
|
||||
#include "VideoCommon/VideoConfig.h"
|
||||
|
||||
Host::Host() = default;
|
||||
Host::Host()
|
||||
{
|
||||
State::SetOnAfterLoadCallback([this] { Host_UpdateDisasmDialog(); });
|
||||
}
|
||||
|
||||
Host::~Host()
|
||||
{
|
||||
State::SetOnAfterLoadCallback(nullptr);
|
||||
}
|
||||
|
||||
Host* Host::GetInstance()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue