mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 09:39:56 -06:00
Compare commits
20 Commits
Canary-1.3
...
gitlab-rel
Author | SHA1 | Date | |
---|---|---|---|
740c346b3b | |||
c9116e2a52 | |||
91248bdd32 | |||
64ecd514f2 | |||
8aabdd8714 | |||
1bf31c91b6 | |||
bf5326ec87 | |||
6e1e081d90 | |||
8b58416003 | |||
24f2d91800 | |||
783b761745 | |||
559d9b4db0 | |||
787a14ed2b | |||
d0c055ccb8 | |||
72935bdbb6 | |||
0df51e24dd | |||
4b003498a3 | |||
23b2576ded | |||
3f653626c8 | |||
052510ae1a |
@ -193,7 +193,7 @@ namespace ARMeilleure.Translation.PTC
|
||||
_infosStream.Seek(0L, SeekOrigin.Begin);
|
||||
bool foundBadFunction = false;
|
||||
|
||||
for (int index = 0; index < _infosStream.Length / Unsafe.SizeOf<InfoEntry>(); index++)
|
||||
for (int index = 0; index < GetEntriesCount(); index++)
|
||||
{
|
||||
InfoEntry infoEntry = DeserializeStructure<InfoEntry>(_infosStream);
|
||||
foreach (ulong address in blacklist)
|
||||
|
@ -131,7 +131,7 @@ namespace Ryujinx.Ava.Systems
|
||||
public override string ToString() => $"{Group}/{Project}";
|
||||
|
||||
public string GetLatestReleaseApiUrl() =>
|
||||
$"https://git.ryujinx.app/api/v4/projects/{Id}/releases/permalink/latest";
|
||||
$"https://git.ryujinx.app/api/v4/{Id}/releases/permalink/latest";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user