mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 13:07:57 -05:00
hle: kernel: service_thread: Add parameter for thread pool size.
This commit is contained in:
@ -34,7 +34,7 @@ ResultVal<std::shared_ptr<ServerSession>> ServerSession::Create(KernelCore& kern
|
||||
|
||||
session->name = std::move(name);
|
||||
session->parent = std::move(parent);
|
||||
session->service_thread = std::make_unique<ServiceThread>(kernel);
|
||||
session->service_thread = std::make_unique<ServiceThread>(kernel, 1);
|
||||
|
||||
return MakeResult(std::move(session));
|
||||
}
|
||||
|
Reference in New Issue
Block a user