Fix typo in `GBHawkLink4x.SetCpuRegister`

broken since introduction in a751aab74
This commit is contained in:
James Groom 2023-11-18 03:20:50 +10:00 committed by GitHub
parent 63127695d4
commit 024739d22e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink4x
}
else if (register.StartsWithOrdinal("D "))
{
C.SetCpuRegister(register.Replace("D ", ""), value);
D.SetCpuRegister(register.Replace("D ", ""), value);
}
}