diff options
author | Mai M <mathew1800@gmail.com> | 2021-06-23 02:35:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 02:35:42 -0400 |
commit | 20f474b09ab503607fab651342bcee433d117c80 (patch) | |
tree | e9f506ad8d9a5366065dd83797813a504cbaba3e /src/yuzu_cmd/yuzu.cpp | |
parent | c1a9fa9db7c47f0c0947aca86c23d5a0551374bb (diff) | |
parent | 4009ae1da2360f20721c93cd204eb64c7342eb53 (diff) |
Merge pull request #6508 from ReinUsesLisp/bootmanager-stop-token
bootmanager: Use std::stop_source for stopping emulation
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 584967f5c..50e388312 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -219,7 +219,7 @@ int main(int argc, char** argv) { system.GPU().Start(); system.Renderer().ReadRasterizer()->LoadDiskResources( - system.CurrentProcess()->GetTitleID(), false, + system.CurrentProcess()->GetTitleID(), std::stop_token{}, [](VideoCore::LoadCallbackStage, size_t value, size_t total) {}); void(system.Run()); |