diff options
Diffstat (limited to 'ChocolArm64/Exceptions')
| -rw-r--r-- | ChocolArm64/Exceptions/VmmOutOfMemoryException.cs | 2 | ||||
| -rw-r--r-- | ChocolArm64/Exceptions/VmmPageFaultException.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ChocolArm64/Exceptions/VmmOutOfMemoryException.cs b/ChocolArm64/Exceptions/VmmOutOfMemoryException.cs index 4a03b65c..d6ddf752 100644 --- a/ChocolArm64/Exceptions/VmmOutOfMemoryException.cs +++ b/ChocolArm64/Exceptions/VmmOutOfMemoryException.cs @@ -8,6 +8,6 @@ namespace ChocolArm64.Exceptions public VmmAccessException() { } - public VmmAccessException(long Position, long Size) : base(string.Format(ExMsg, Position, Size)) { } + public VmmAccessException(long position, long size) : base(string.Format(ExMsg, position, size)) { } } }
\ No newline at end of file diff --git a/ChocolArm64/Exceptions/VmmPageFaultException.cs b/ChocolArm64/Exceptions/VmmPageFaultException.cs index d55c2c1c..f33aafc0 100644 --- a/ChocolArm64/Exceptions/VmmPageFaultException.cs +++ b/ChocolArm64/Exceptions/VmmPageFaultException.cs @@ -8,6 +8,6 @@ namespace ChocolArm64.Exceptions public VmmPageFaultException() { } - public VmmPageFaultException(long Position) : base(string.Format(ExMsg, Position)) { } + public VmmPageFaultException(long position) : base(string.Format(ExMsg, position)) { } } }
\ No newline at end of file |
