aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs')
-rw-r--r--Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs b/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
index f4ccb7ba..2f03d13a 100644
--- a/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
+++ b/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
@@ -7,9 +7,9 @@ namespace Ryujinx.HLE.Exceptions
{
static readonly Type _structType = typeof(T);
- public InvalidStructLayoutException(string message) : base(message) {}
+ public InvalidStructLayoutException(string message) : base(message) { }
- public InvalidStructLayoutException(int expectedSize) :
- base($"Type {_structType.Name} has the wrong size. Expected: {expectedSize} bytes, Got: {Unsafe.SizeOf<T>()} bytes") {}
+ public InvalidStructLayoutException(int expectedSize)
+ : base($"Type {_structType.Name} has the wrong size. Expected: {expectedSize} bytes, got: {Unsafe.SizeOf<T>()} bytes") { }
}
} \ No newline at end of file