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
|
@ -6,6 +6,8 @@
|
|||
|
||||
#include "graphics_breakpoint_observer.h"
|
||||
|
||||
class EmuThread;
|
||||
|
||||
class GraphicsTracingWidget : public BreakPointObserverDock {
|
||||
Q_OBJECT
|
||||
|
||||
|
@ -20,6 +22,9 @@ private slots:
|
|||
void OnBreakPointHit(Pica::DebugContext::Event event, void* data) override;
|
||||
void OnResumed() override;
|
||||
|
||||
void OnEmulationStarting(EmuThread* emu_thread);
|
||||
void OnEmulationStopping();
|
||||
|
||||
signals:
|
||||
void SetStartTracingButtonEnabled(bool enable);
|
||||
void SetStopTracingButtonEnabled(bool enable);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue