mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 18:47:57 -05:00
input/hid: Migrate to the new UUID implementation
This commit is contained in:
@ -9,17 +9,17 @@
|
||||
namespace InputCommon {
|
||||
|
||||
constexpr PadIdentifier key_identifier = {
|
||||
.guid = Common::UUID{Common::INVALID_UUID},
|
||||
.guid = Common::NewUUID{},
|
||||
.port = 0,
|
||||
.pad = 0,
|
||||
};
|
||||
constexpr PadIdentifier keyboard_key_identifier = {
|
||||
.guid = Common::UUID{Common::INVALID_UUID},
|
||||
.guid = Common::NewUUID{},
|
||||
.port = 1,
|
||||
.pad = 0,
|
||||
};
|
||||
constexpr PadIdentifier keyboard_modifier_identifier = {
|
||||
.guid = Common::UUID{Common::INVALID_UUID},
|
||||
.guid = Common::NewUUID{},
|
||||
.port = 1,
|
||||
.pad = 1,
|
||||
};
|
||||
|
Reference in New Issue
Block a user