diff options
author | Matthew Wells <91291346+richarm4@users.noreply.github.com> | 2022-11-17 09:13:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 18:13:37 +0100 |
commit | b5cf8b8af9a8316a32322c8a7dc6d1798490e241 (patch) | |
tree | 3095bf15899ad9ec6f4d6ffbeb8345ebb5768d82 | |
parent | 55043c8afcf3803b091c2770d7f528bbeb238f68 (diff) |
Capitalization to be consistent (#3860)1.1.353
Thread ID Register, Floating-point Control Register, and Floating-point Status Register all had Register capitalized, so the Register in Processor State register should be capitalized.
-rw-r--r-- | Ryujinx.Cpu/IExecutionContext.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Cpu/IExecutionContext.cs b/Ryujinx.Cpu/IExecutionContext.cs index 3455b5c1..c3821080 100644 --- a/Ryujinx.Cpu/IExecutionContext.cs +++ b/Ryujinx.Cpu/IExecutionContext.cs @@ -27,7 +27,7 @@ namespace Ryujinx.Cpu long TpidrroEl0 { get; set; } /// <summary> - /// Processor State register. + /// Processor State Register. /// </summary> uint Pstate { get; set; } @@ -109,4 +109,4 @@ namespace Ryujinx.Cpu /// </remarks> void StopRunning(); } -}
\ No newline at end of file +} |