citra-qt: Properly disable the CiTrace widget upon starting/stopping emulation.
This commit is contained in:
parent
902fa4da52
commit
01a526e1c4
3 changed files with 39 additions and 2 deletions
|
@ -154,6 +154,9 @@ GMainWindow::GMainWindow() : emu_thread(nullptr)
|
|||
connect(this, SIGNAL(EmulationStopping()), registersWidget, SLOT(OnEmulationStopping()));
|
||||
connect(this, SIGNAL(EmulationStarting(EmuThread*)), render_window, SLOT(OnEmulationStarting(EmuThread*)));
|
||||
connect(this, SIGNAL(EmulationStopping()), render_window, SLOT(OnEmulationStopping()));
|
||||
connect(this, SIGNAL(EmulationStarting(EmuThread*)), graphicsTracingWidget, SLOT(OnEmulationStarting(EmuThread*)));
|
||||
connect(this, SIGNAL(EmulationStopping()), graphicsTracingWidget, SLOT(OnEmulationStopping()));
|
||||
|
||||
|
||||
// Setup hotkeys
|
||||
RegisterHotkey("Main Window", "Load File", QKeySequence::Open);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue