More progress

This commit is contained in:
Isaac Marovitz
2024-03-13 15:32:02 +00:00
parent b7239a6e3e
commit baf85f3b93
70 changed files with 403 additions and 117 deletions

View File

@@ -2,7 +2,7 @@ using System;
using System.Buffers.Binary;
using System.Runtime.InteropServices;
namespace Ryujinx.Horizon.Sdk.Hid.SharedMemory.Common
namespace Ryujinx.Horizon.Sdk.Hid
{
/// <summary>
/// This is a "marker interface" to add some compile-time safety to a convention-based optimization.
@@ -57,7 +57,7 @@ namespace Ryujinx.Horizon.Sdk.Hid.SharedMemory.Common
{
return sampledDataStruct switch
{
Npad.SixAxisSensorState _ => sizeof(ulong),
SixAxisSensorState _ => sizeof(ulong),
_ => 0,
};
}