aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Settings/System/DeviceNickName.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Horizon/Sdk/Settings/System/DeviceNickName.cs')
-rw-r--r--src/Ryujinx.Horizon/Sdk/Settings/System/DeviceNickName.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/Sdk/Settings/System/DeviceNickName.cs b/src/Ryujinx.Horizon/Sdk/Settings/System/DeviceNickName.cs
new file mode 100644
index 00000000..99c9f981
--- /dev/null
+++ b/src/Ryujinx.Horizon/Sdk/Settings/System/DeviceNickName.cs
@@ -0,0 +1,25 @@
+using Ryujinx.Common.Memory;
+using System.Runtime.InteropServices;
+using System.Text;
+
+namespace Ryujinx.Horizon.Sdk.Settings.System
+{
+ [StructLayout(LayoutKind.Sequential, Size = 0x80)]
+ struct DeviceNickName
+ {
+ public Array128<byte> Value;
+
+ public DeviceNickName(string value)
+ {
+ int bytesWritten = Encoding.ASCII.GetBytes(value, Value.AsSpan());
+ if (bytesWritten < 128)
+ {
+ Value[bytesWritten] = 0;
+ }
+ else
+ {
+ Value[127] = 0;
+ }
+ }
+ }
+}