Skip to content
Snippets Groups Projects
Commit a46aacf2 authored by Evan Husted's avatar Evan Husted
Browse files

gpu: Switch the 500ms timeout back to 1s

It seemed like it was waiting for 1 second no matter what; might as well have the log & syncpoint map match reality.
parent ad9d6588
No related branches found
Tags Canary-1.2.410
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment