diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs b/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs index ec977009..87417e16 100644 --- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs +++ b/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs @@ -19,7 +19,7 @@ namespace Ryujinx.HLE.HOS.Applets { private byte element; - public Span<byte> ToSpan() => MemoryMarshal.CreateSpan(ref element, 4 * 0x81); + public Span<byte> AsSpan() => MemoryMarshal.CreateSpan(ref element, 4 * 0x81); } } #pragma warning restore CS0649 |