diff options
author | bunnei <bunneidev@gmail.com> | 2016-12-18 16:07:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-18 16:07:26 -0500 |
commit | 4d22e1530858e00bfd8efffb72cf94ed7125f925 (patch) | |
tree | 19ff68a5d1e8578b2d9ce56cee354148cbd84c26 /src/citra_qt/main.cpp | |
parent | 20b832cfc1cb7fca6dd59a4af2f2c95e3c5eaaab (diff) | |
parent | 393a0f99dadde13fb39d623c493e00ef8ebdacba (diff) |
Merge pull request #2353 from CaptV0rt3x/code-cleanup
Code cleanup
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r-- | src/citra_qt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index ad6221739..3e3c92f24 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -212,7 +212,7 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { SLOT(OnMenuLoadFile())); connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, SLOT(OnStartGame())); - connect(GetHotkey("Main Window", "Swap Screens", this), SIGNAL(activated()), this, + connect(GetHotkey("Main Window", "Swap Screens", render_window), SIGNAL(activated()), this, SLOT(OnSwapScreens())); std::string window_title = |