mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-09 06:41:07 +08:00
Merge 22e03fdaad6567b7d22e68b0c888b8949ac1c4c1 into cc0ce62e7ff283919c95c12a1c8e3b0887271690
This commit is contained in:
commit
775b69b8e6
@ -226,10 +226,13 @@ MemoryViewWidget::MemoryViewWidget(Core::System& system, QWidget* parent)
|
||||
[this] { UpdateDispatcher(UpdateType::Symbols); });
|
||||
connect(Host::GetInstance(), &Host::PPCBreakpointsChanged, this,
|
||||
&MemoryViewWidget::UpdateBreakpointTags);
|
||||
connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this] {
|
||||
connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this] (const Core::State state) {
|
||||
// UpdateDisasmDialog currently catches pauses, no need to signal it twice.
|
||||
if (Core::GetState(m_system) != Core::State::Paused)
|
||||
if (state != Core::State::Paused)
|
||||
UpdateDispatcher(UpdateType::Values);
|
||||
|
||||
if (state == Core::State::Uninitialized)
|
||||
UpdateBreakpointTags();
|
||||
});
|
||||
connect(Host::GetInstance(), &Host::UpdateDisasmDialog, this, [this] {
|
||||
// Disasm spam will break updates while running. Only need it for things like steps when paused
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user