summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-04-30 05:26:59 +0200
committerbunnei <bunneidev@gmail.com>2015-05-02 00:34:49 +0200
commitad4445c5298760d07039f2293466fe6e60e39006 (patch)
tree59171bba95ec03134c820e47dbbba273895c95ba /src/citra_qt/main.cpp
parentQt: Use signals for emu_thread start/stop and fix disasm widget. (diff)
downloadyuzu-ad4445c5298760d07039f2293466fe6e60e39006.tar
yuzu-ad4445c5298760d07039f2293466fe6e60e39006.tar.gz
yuzu-ad4445c5298760d07039f2293466fe6e60e39006.tar.bz2
yuzu-ad4445c5298760d07039f2293466fe6e60e39006.tar.lz
yuzu-ad4445c5298760d07039f2293466fe6e60e39006.tar.xz
yuzu-ad4445c5298760d07039f2293466fe6e60e39006.tar.zst
yuzu-ad4445c5298760d07039f2293466fe6e60e39006.zip
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 7de2bf8ba..f21c55db6 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -141,6 +141,8 @@ GMainWindow::GMainWindow() : emu_thread(nullptr)
connect(this, SIGNAL(EmulationStarted(EmuThread*)), disasmWidget, SLOT(OnEmulationStarted(EmuThread*)));
connect(this, SIGNAL(EmulationStopped()), disasmWidget, SLOT(OnEmulationStopped()));
+ connect(this, SIGNAL(EmulationStarted(EmuThread*)), registersWidget, SLOT(OnEmulationStarted(EmuThread*)));
+ connect(this, SIGNAL(EmulationStopped()), registersWidget, SLOT(OnEmulationStopped()));
connect(this, SIGNAL(EmulationStarted(EmuThread*)), render_window, SLOT(OnEmulationStarted(EmuThread*)));
connect(this, SIGNAL(EmulationStopped()), render_window, SLOT(OnEmulationStopped()));