mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-11 20:45:32 +00:00
Add error log output when max retried reached
This commit is contained in:
parent
48adca40f5
commit
c29c68ec42
1 changed files with 5 additions and 0 deletions
|
|
@ -155,6 +155,11 @@ namespace Ryujinx.Graphics.Vulkan.Queries
|
|||
}
|
||||
}
|
||||
|
||||
if (iterations >= MaxQueryRetries)
|
||||
{
|
||||
Logger.Error?.Print(LogClass.Gpu, $"Error: Query result {_type} timed out. Took more than {MaxQueryRetries} tries.");
|
||||
}
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue