7f500e7cae
* set: Quick implementation of GetKeyCodeMap/GetKeyCodeMap2 This fixed USB keyboard access in official titles. * hid: Stub SendKeyboardLockKeyEvent * Update Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * Update Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * set: KeyboardLayout bringup * set: Small bugfix * Fix GetKeyCodeMapImpl * Revert SystemRegion > RegionCode in Configuration * Fix SendKeyboardLockKeyEvent Co-authored-by: Ac_K <Acoustik666@gmail.com>
25 lines
483 B
C#
25 lines
483 B
C#
namespace Ryujinx.HLE.HOS.SystemState
|
|
{
|
|
// nn::settings::KeyboardLayout
|
|
public enum KeyboardLayout
|
|
{
|
|
Default = 0,
|
|
EnglishUs,
|
|
EnglishUsInternational,
|
|
EnglishUk,
|
|
French,
|
|
FrenchCa,
|
|
Spanish,
|
|
SpanishLatin,
|
|
German,
|
|
Italian,
|
|
Portuguese,
|
|
Russian,
|
|
Korean,
|
|
ChineseSimplified,
|
|
ChineseTraditional,
|
|
|
|
Min = Default,
|
|
Max = ChineseTraditional
|
|
}
|
|
}
|