mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:08:38 +00:00
25 lines
805 B
C#
25 lines
805 B
C#
namespace Ryujinx.HLE.HOS.Services.Hid
|
|
{
|
|
public class DebugPadDevice : BaseDevice
|
|
{
|
|
public DebugPadDevice(Switch device, bool active) : base(device, active) { }
|
|
|
|
public void Update()
|
|
{
|
|
ref ShMemDebugPad debugPad = ref _device.Hid.SharedMemory.DebugPad;
|
|
|
|
int currentIndex = UpdateEntriesHeader(ref debugPad.Header, out int previousIndex);
|
|
|
|
if (!Active)
|
|
{
|
|
return;
|
|
}
|
|
|
|
ref DebugPadEntry currentEntry = ref debugPad.Entries[currentIndex];
|
|
DebugPadEntry previousEntry = debugPad.Entries[previousIndex];
|
|
|
|
currentEntry.SampleTimestamp = previousEntry.SampleTimestamp + 1;
|
|
currentEntry.SampleTimestamp2 = previousEntry.SampleTimestamp2 + 1;
|
|
}
|
|
}
|
|
} |