mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
FrameAdvance: Fix continuous frame advancing while the debug UI is open. Blocks signals from being spammed to update the UI.
This commit is contained in:
parent
2aec195ec8
commit
f29fe15d77
4 changed files with 28 additions and 1 deletions
|
@ -250,6 +250,9 @@ void Host_YieldToUI()
|
|||
|
||||
void Host_UpdateDisasmDialog()
|
||||
{
|
||||
if (Settings::Instance().GetIsContinuouslyFrameStepping())
|
||||
return;
|
||||
|
||||
QueueOnObject(QApplication::instance(), [] { emit Host::GetInstance()->UpdateDisasmDialog(); });
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue