HvExecutionContext: fix DebugPc

This commit is contained in:
svc64 2023-09-25 11:02:31 +03:00
parent ac438d6572
commit 40584e0e45
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ namespace Ryujinx.Cpu.AppleHv
/// <inheritdoc/>
public ulong DebugPc
{
get => Pc;
set => Pc = value;
get => _impl.ElrEl1;
set => _impl.ElrEl1 = value;
}
/// <inheritdoc/>