diff options
| author | 2017-02-18 02:16:24 -0800 | |
|---|---|---|
| committer | 2017-02-18 02:16:24 -0800 | |
| commit | 4cb1f368967165f47490e7a8cd696a690d173604 (patch) | |
| tree | 7223a92e4549690ff8e676cee3f917190929e3a1 /src/citra_qt/debugger/graphics | |
| parent | Qt: Fix action name to match conventions (diff) | |
| download | yuzu-4cb1f368967165f47490e7a8cd696a690d173604.tar.gz yuzu-4cb1f368967165f47490e7a8cd696a690d173604.tar.xz yuzu-4cb1f368967165f47490e7a8cd696a690d173604.zip | |
Qt: Re-organize setup of debugging widgets
Diffstat (limited to 'src/citra_qt/debugger/graphics')
| -rw-r--r-- | src/citra_qt/debugger/graphics/graphics_tracing.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/debugger/graphics/graphics_tracing.h b/src/citra_qt/debugger/graphics/graphics_tracing.h index 3f73bcd2e..eb1292c29 100644 --- a/src/citra_qt/debugger/graphics/graphics_tracing.h +++ b/src/citra_qt/debugger/graphics/graphics_tracing.h | |||
| @@ -15,6 +15,9 @@ public: | |||
| 15 | explicit GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, | 15 | explicit GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, |
| 16 | QWidget* parent = nullptr); | 16 | QWidget* parent = nullptr); |
| 17 | 17 | ||
| 18 | void OnEmulationStarting(EmuThread* emu_thread); | ||
| 19 | void OnEmulationStopping(); | ||
| 20 | |||
| 18 | private slots: | 21 | private slots: |
| 19 | void StartRecording(); | 22 | void StartRecording(); |
| 20 | void StopRecording(); | 23 | void StopRecording(); |
| @@ -23,9 +26,6 @@ private slots: | |||
| 23 | void OnBreakPointHit(Pica::DebugContext::Event event, void* data) override; | 26 | void OnBreakPointHit(Pica::DebugContext::Event event, void* data) override; |
| 24 | void OnResumed() override; | 27 | void OnResumed() override; |
| 25 | 28 | ||
| 26 | void OnEmulationStarting(EmuThread* emu_thread); | ||
| 27 | void OnEmulationStopping(); | ||
| 28 | |||
| 29 | signals: | 29 | signals: |
| 30 | void SetStartTracingButtonEnabled(bool enable); | 30 | void SetStartTracingButtonEnabled(bool enable); |
| 31 | void SetStopTracingButtonEnabled(bool enable); | 31 | void SetStopTracingButtonEnabled(bool enable); |