summaryrefslogtreecommitdiffstats
path: root/src/launcher.rs
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-01-20 18:22:35 -0600
committerLibravatar bigfoot547 <[email protected]>2025-01-20 18:22:35 -0600
commit8c3706df11abadafec89ef0546d20c79d31ec92b (patch)
tree6370b36d566b54969f7d6de9fc5a0779615b7617 /src/launcher.rs
parentit runs the game (diff)
increase number of concurrent tasks
Diffstat (limited to 'src/launcher.rs')
-rw-r--r--src/launcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/launcher.rs b/src/launcher.rs
index f148653..78c429d 100644
--- a/src/launcher.rs
+++ b/src/launcher.rs
@@ -723,7 +723,7 @@ impl LibraryRepository {
Ok(false)
}))
- .try_buffer_unordered(8)
+ .try_buffer_unordered(32)
.try_fold(0usize, |accum, res| async move {
match res {
true => Ok(accum + 1),