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/> /// <inheritdoc/>
public ulong DebugPc public ulong DebugPc
{ {
get => Pc; get => _impl.ElrEl1;
set => Pc = value; set => _impl.ElrEl1 = value;
} }
/// <inheritdoc/> /// <inheritdoc/>