summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/bootmanager.h
diff options
context:
space:
mode:
authorKingcom <sorgts@googlemail.com>2015-01-07 12:14:23 +0100
committerKingcom <sorgts@googlemail.com>2015-01-11 21:22:51 +0100
commit2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f (patch)
tree110079649f6649195c93b53815aceaab14b183fc /src/citra_qt/bootmanager.h
parentMerge pull request #402 from chrisvj/master (diff)
downloadyuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.tar
yuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.tar.gz
yuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.tar.bz2
yuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.tar.lz
yuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.tar.xz
yuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.tar.zst
yuzu-2bbc12e6c3dbeb2b8cc73753c1fddca94bdde50f.zip
Diffstat (limited to '')
-rw-r--r--src/citra_qt/bootmanager.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/citra_qt/bootmanager.h b/src/citra_qt/bootmanager.h
index 1c893384c..a55db682a 100644
--- a/src/citra_qt/bootmanager.h
+++ b/src/citra_qt/bootmanager.h
@@ -81,12 +81,18 @@ private:
signals:
/**
- * Emitted when CPU when we've finished processing a single Gekko instruction
+ * Emitted when the CPU has halted execution
*
- * @warning This will only be emitted when the CPU is not running (SetCpuRunning(false))
* @warning When connecting to this signal from other threads, make sure to specify either Qt::QueuedConnection (invoke slot within the destination object's message thread) or even Qt::BlockingQueuedConnection (additionally block source thread until slot returns)
*/
- void CPUStepped();
+ void DebugModeEntered();
+
+ /**
+ * Emitted right before the CPU continues execution
+ *
+ * @warning When connecting to this signal from other threads, make sure to specify either Qt::QueuedConnection (invoke slot within the destination object's message thread) or even Qt::BlockingQueuedConnection (additionally block source thread until slot returns)
+ */
+ void DebugModeLeft();
};
class GRenderWindow : public QWidget, public EmuWindow