diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2015-05-21 02:12:59 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2015-07-13 22:27:21 +0200 |
commit | 01a526e1c449f86bbb626dd83f3f6cf94c2d86d4 (patch) | |
tree | a641344e90c78e537ed46c306b76d1adb82a863f /src/citra_qt/main.cpp | |
parent | Add CiTrace recording support. (diff) | |
download | yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.gz yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.bz2 yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.lz yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.xz yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.zst yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra_qt/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 6bfb6e417..2746de779 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -154,6 +154,9 @@ GMainWindow::GMainWindow() : emu_thread(nullptr) connect(this, SIGNAL(EmulationStopping()), registersWidget, SLOT(OnEmulationStopping())); connect(this, SIGNAL(EmulationStarting(EmuThread*)), render_window, SLOT(OnEmulationStarting(EmuThread*))); connect(this, SIGNAL(EmulationStopping()), render_window, SLOT(OnEmulationStopping())); + connect(this, SIGNAL(EmulationStarting(EmuThread*)), graphicsTracingWidget, SLOT(OnEmulationStarting(EmuThread*))); + connect(this, SIGNAL(EmulationStopping()), graphicsTracingWidget, SLOT(OnEmulationStopping())); + // Setup hotkeys RegisterHotkey("Main Window", "Load File", QKeySequence::Open); |