diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-18 02:24:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 02:24:56 +0100 |
commit | 62a8c61e362a69aafdbc859975b89ad3527aaeca (patch) | |
tree | 218e9667589d4107155bf27ba7577c045c602745 /src | |
parent | Merge pull request #80 from gdkchan/nro_fix (diff) | |
parent | bootmanager: Minor tidiness/correctness changes (diff) | |
download | yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.tar yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.tar.gz yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.tar.bz2 yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.tar.lz yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.tar.xz yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.tar.zst yuzu-62a8c61e362a69aafdbc859975b89ad3527aaeca.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 3 | ||||
-rw-r--r-- | src/yuzu/bootmanager.h | 10 |
2 files changed, 6 insertions, 7 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(); diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 6974edcbb..130bc613b 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -58,7 +58,7 @@ public: * @return True if the emulation thread is running, otherwise false * @note This function is thread-safe */ - bool IsRunning() { + bool IsRunning() const { return running; } @@ -68,12 +68,12 @@ public: void RequestStop() { stop_run = true; SetRunning(false); - }; + } private: - bool exec_step; - bool running; - std::atomic<bool> stop_run; + bool exec_step = false; + bool running = false; + std::atomic<bool> stop_run{false}; std::mutex running_mutex; std::condition_variable running_cv; |