diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-10-02 08:35:39 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-10-02 08:35:43 -0400 |
commit | e55d086cc93ea33829e77a2e92be52bcf900767b (patch) | |
tree | 486fd9ddf5f0072aaee18cd69e399e33043eb314 /src/core | |
parent | 5d86c52a3a5ec1037cc30e1a6d8abf914e3055a4 (diff) |
qt: Add service dialog
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp index 36eb2c094..e6ee0810b 100644 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ b/src/core/hle/service/bcat/backend/boxcat.cpp @@ -364,18 +364,17 @@ void SynchronizeInternal(DirectoryGetter dir_getter, TitleIDVersion title, bool Boxcat::Synchronize(TitleIDVersion title, ProgressServiceBackend& progress) { is_syncing.exchange(true); - std::thread([this, title, &progress] { - SynchronizeInternal(dir_getter, title, progress); - }).detach(); + std::thread([this, title, &progress] { SynchronizeInternal(dir_getter, title, progress); }) + .detach(); return true; } bool Boxcat::SynchronizeDirectory(TitleIDVersion title, std::string name, ProgressServiceBackend& progress) { is_syncing.exchange(true); - std::thread([this, title, name, &progress] { - SynchronizeInternal(dir_getter, title, progress, name); - }).detach(); + std::thread( + [this, title, name, &progress] { SynchronizeInternal(dir_getter, title, progress, name); }) + .detach(); return true; } |