This website requires JavaScript.
Explore
Help
Sign in
alexx009
/
jinx
Archived
Watch
1
Star
0
Fork
You've already forked jinx
0
forked from
Mirror/Ryujinx
Code
Pull requests
Activity
This repository has been archived on
2024-10-11
. You can view files and clone it, but cannot push or open issues or pull requests.
d254548548
jinx
/
Ryujinx.HLE
/
Input
/
Keyboard
/
Keyboard.cs
8 lines
128 B
C#
Raw
Normal View
History
Unescape
Escape
hid: Initial Keyboard Support (#684) * hid: Initial Keyboard Support This adds basic hid keyboard support. Because of OpenTK.Input limitations, some specials keys aren't mapped. * Fix code style * Fix for loops code style * Make hid keyboard feature toggleable * Address comments * Fix 2 other nits * Apply jd's suggestion
2019-05-02 23:29:01 +00:00
namespace
Ryujinx.HLE.Input
{
Little rewrite of HID input (#723) * change hid sharedmem writing to use structures
2019-07-22 17:15:46 +00:00
public
struct
Keyboard
hid: Initial Keyboard Support (#684) * hid: Initial Keyboard Support This adds basic hid keyboard support. Because of OpenTK.Input limitations, some specials keys aren't mapped. * Fix code style * Fix for loops code style * Make hid keyboard feature toggleable * Address comments * Fix 2 other nits * Apply jd's suggestion
2019-05-02 23:29:01 +00:00
{
public
int
Modifier
;
public
int
[
]
Keys
;
}
}
Copy permalink