summaryrefslogtreecommitdiff
path: root/src/yuzu/bootmanager.cpp
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-01-11 20:33:56 -0700
committerJames Rowe <jroweboy@gmail.com>2018-01-12 19:11:04 -0700
commit389979018cce654b1ade0161abfc627832afe592 (patch)
tree90536049d982e4f5ee1df984b1d9da52db704e95 /src/yuzu/bootmanager.cpp
parent1d28b2e142f845773e2b90e267d9632e196a99b9 (diff)
Remove gpu debugger and get yuzu qt to compile
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r--src/yuzu/bootmanager.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index eb542ad4e..6c17af708 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -8,7 +8,6 @@
#include <QWindow>
#endif
-#include "citra_qt/bootmanager.h"
#include "common/microprofile.h"
#include "common/scm_rev.h"
#include "common/string_util.h"
@@ -18,7 +17,8 @@
#include "input_common/keyboard.h"
#include "input_common/main.h"
#include "input_common/motion_emu.h"
-#include "network/network.h"
+#include "yuzu/bootmanager.h"
+
EmuThread::EmuThread(GRenderWindow* render_window)
: exec_step(false), running(false), stop_run(false), render_window(render_window) {}
@@ -112,12 +112,10 @@ GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread)
setWindowTitle(QString::fromStdString(window_title));
InputCommon::Init();
- Network::Init();
}
GRenderWindow::~GRenderWindow() {
InputCommon::Shutdown();
- Network::Shutdown();
}
void GRenderWindow::moveContext() {