summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/bootmanager.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-05-01 01:46:50 +0200
committerbunnei <bunneidev@gmail.com>2015-05-02 00:35:51 +0200
commitbc41de2131728192e3fd4c8c83e8b2d6e5ba4530 (patch)
tree03a92c76eb03070dd6748f1b1dbb13efb68d4af0 /src/citra_qt/bootmanager.h
parentQt: Clear registers widget on shutdown. (diff)
downloadyuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.tar
yuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.tar.gz
yuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.tar.bz2
yuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.tar.lz
yuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.tar.xz
yuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.tar.zst
yuzu-bc41de2131728192e3fd4c8c83e8b2d6e5ba4530.zip
Diffstat (limited to '')
-rw-r--r--src/citra_qt/bootmanager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/citra_qt/bootmanager.h b/src/citra_qt/bootmanager.h
index e57522187..715faf2d7 100644
--- a/src/citra_qt/bootmanager.h
+++ b/src/citra_qt/bootmanager.h
@@ -51,9 +51,9 @@ public:
bool IsRunning() { return running; }
/**
- * Requests for the emulation thread to stop running and shutdown emulation
+ * Requests for the emulation thread to stop running
*/
- void RequestShutdown() {
+ void RequestStop() {
stop_run = true;
running = false;
};
@@ -115,8 +115,8 @@ public:
public slots:
void moveContext(); // overridden
- void OnEmulationStarted(EmuThread* emu_thread);
- void OnEmulationStopped();
+ void OnEmulationStarting(EmuThread* emu_thread);
+ void OnEmulationStopping();
private:
void OnMinimalClientAreaChangeRequest(const std::pair<unsigned,unsigned>& minimal_size) override;