mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 03:38:23 -05:00
citra-qt: Properly disable the CiTrace widget upon starting/stopping emulation.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user