diff options
author | liushuyu <liushuyu011@gmail.com> | 2019-03-11 01:06:49 +0100 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2019-03-15 16:10:21 +0100 |
commit | 59f16f2e0292f2c8d51f059084c5a6f68727c391 (patch) | |
tree | c98abb5cc9b09bca474edcfaa3f6a9a80c633c58 /src | |
parent | Merge pull request #2233 from ReinUsesLisp/morton-cleanup (diff) | |
download | yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.tar yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.tar.gz yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.tar.bz2 yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.tar.lz yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.tar.xz yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.tar.zst yuzu-59f16f2e0292f2c8d51f059084c5a6f68727c391.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index d2c97b1f8..05ad19e1d 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -24,8 +24,6 @@ void EmuThread::run() { MicroProfileOnThreadCreate("EmuThread"); - stop_run = false; - emit LoadProgress(VideoCore::LoadCallbackStage::Prepare, 0, 0); Core::System::GetInstance().Renderer().Rasterizer().LoadDiskResources( @@ -40,7 +38,7 @@ void EmuThread::run() { render_window->DoneCurrent(); } - // holds whether the cpu was running during the last iteration, + // Holds whether the cpu was running during the last iteration, // so that the DebugModeLeft signal can be emitted before the // next execution step bool was_active = false; |