mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 03:05:30 +00:00
[Win] Fixed RawHID struct definition
This commit is contained in:
parent
94476b930e
commit
956691de31
|
@ -2758,7 +2758,23 @@ namespace OpenTK.Platform.Windows
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Raw input data as an array of bytes.
|
/// Raw input data as an array of bytes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal IntPtr RawData;
|
internal byte RawData;
|
||||||
|
|
||||||
|
internal byte this[int index]
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (index < 0 || index > Size * Count)
|
||||||
|
throw new ArgumentOutOfRangeException("index");
|
||||||
|
unsafe
|
||||||
|
{
|
||||||
|
fixed (byte* data = &RawData)
|
||||||
|
{
|
||||||
|
return *(data + index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in a new issue