UI: RPC: Fix asset image hover string version pointing to the Canary repo in Canary

This commit is contained in:
Evan Husted 2024-11-10 23:26:15 -06:00
parent 826ffd4a04
commit 79ba9d1258
4 changed files with 66 additions and 96 deletions

View file

@ -47,7 +47,7 @@ namespace Ryujinx.Common.Logging.Targets
}
// Clean up old logs, should only keep 3
FileInfo[] files = logDir.GetFiles("*.log").OrderBy((info => info.CreationTime)).ToArray();
FileInfo[] files = logDir.GetFiles("*.log").OrderBy(info => info.CreationTime).ToArray();
for (int i = 0; i < files.Length - 2; i++)
{
try