Revert .NET 10 to .NET 9

See merge request kenji-nx/ryujinx!19
This commit is contained in:
BeZide
2026-01-21 10:03:25 -06:00
committed by KeatonTheBot
parent 2c1b7bc667
commit 6d36f471dd
39 changed files with 464 additions and 108 deletions
@@ -58,7 +58,10 @@ namespace Ryujinx.Memory.Tracking
{
foreach (var handle in _handles)
{
handle?.RegisterAction((_, _) => action(handle.Address, handle.Size));
if (handle != null)
{
handle?.RegisterAction((_, _) => action(handle.Address, handle.Size));
}
}
}
@@ -66,7 +69,10 @@ namespace Ryujinx.Memory.Tracking
{
foreach (var handle in _handles)
{
handle?.RegisterPreciseAction((_, _, write) => action(handle.Address, handle.Size, write));
if (handle != null)
{
handle?.RegisterPreciseAction((_, _, write) => action(handle.Address, handle.Size, write));
}
}
}