mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
gpu: Switch the 500ms timeout back to 1s
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
It seemed like it was waiting for 1 second no matter what; might as well have the log & syncpoint map match reality.
This commit is contained in:
parent
ad9d6588e8
commit
a46aacf2e2
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ namespace Ryujinx.Graphics.Gpu.Synchronization
|
|||
// TODO: Remove this when GPU channel scheduling will be implemented.
|
||||
if (timeout == Timeout.InfiniteTimeSpan)
|
||||
{
|
||||
timeout = TimeSpan.FromMilliseconds(500);
|
||||
timeout = TimeSpan.FromSeconds(1);
|
||||
}
|
||||
|
||||
using ManualResetEvent waitEvent = new(false);
|
||||
|
|
|
|||
Loading…
Reference in a new issue