mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
bootmanager: In-class initialize EmuThread's boolean member variables
Trims down the initializer list a little.
This commit is contained in:
parent
9699194b54
commit
c06f7978ac
@ -20,8 +20,7 @@
|
|||||||
#include "input_common/motion_emu.h"
|
#include "input_common/motion_emu.h"
|
||||||
#include "network/network.h"
|
#include "network/network.h"
|
||||||
|
|
||||||
EmuThread::EmuThread(GRenderWindow* render_window)
|
EmuThread::EmuThread(GRenderWindow* render_window) : render_window(render_window) {}
|
||||||
: exec_step(false), running(false), stop_run(false), render_window(render_window) {}
|
|
||||||
|
|
||||||
void EmuThread::run() {
|
void EmuThread::run() {
|
||||||
render_window->MakeCurrent();
|
render_window->MakeCurrent();
|
||||||
|
@ -71,9 +71,9 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool exec_step;
|
bool exec_step = false;
|
||||||
bool running;
|
bool running = false;
|
||||||
std::atomic<bool> stop_run;
|
std::atomic<bool> stop_run{false};
|
||||||
std::mutex running_mutex;
|
std::mutex running_mutex;
|
||||||
std::condition_variable running_cv;
|
std::condition_variable running_cv;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user