diff options
| author | 2017-02-19 12:13:52 -0800 | |
|---|---|---|
| committer | 2017-02-19 12:13:52 -0800 | |
| commit | 7628f3a6fcc166ee123ff26936fbd2e0fed1c4cd (patch) | |
| tree | ac713d61d2691408d9363c8acb4d666f054248bb /src/citra_qt/debugger | |
| parent | OpenGL: Check if uniform block exists before updating it (#2581) (diff) | |
| parent | Qt: Move some connections from .ui file to code (diff) | |
| download | yuzu-7628f3a6fcc166ee123ff26936fbd2e0fed1c4cd.tar.gz yuzu-7628f3a6fcc166ee123ff26936fbd2e0fed1c4cd.tar.xz yuzu-7628f3a6fcc166ee123ff26936fbd2e0fed1c4cd.zip | |
Merge pull request #2580 from yuriks/qt-cleanup2
Qt cleanups 2
Diffstat (limited to 'src/citra_qt/debugger')
| -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); |