diff options
author | Lioncash <mathew1800@gmail.com> | 2018-01-17 18:34:58 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-01-17 18:35:02 -0500 |
commit | e50188374f94b4ea4039ca628313b0e7c40de4d6 (patch) | |
tree | 10c13314223270c67e1336fc73d96c6254edc484 /src/yuzu/bootmanager.cpp | |
parent | ee08c39b7251c6a037014b503ecf70ebf8dc5ed5 (diff) |
bootmanager: Minor tidiness/correctness changes
Moved over from #3266 in citra.
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 61d678c9b..b9dc4943a 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -15,8 +15,7 @@ #include "input_common/motion_emu.h" #include "yuzu/bootmanager.h" -EmuThread::EmuThread(GRenderWindow* render_window) - : exec_step(false), running(false), stop_run(false), render_window(render_window) {} +EmuThread::EmuThread(GRenderWindow* render_window) : render_window(render_window) {} void EmuThread::run() { render_window->MakeCurrent(); |