diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-10 21:52:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 21:52:13 -0700 |
commit | ca9da569ce8d5ce8106ff69afce484d9516570a8 (patch) | |
tree | db8f98fcfcd3d3d77f77c52b3be696c073f90f6e /src/input_common/drivers/mouse.cpp | |
parent | 1105614b86450f64e04d0d409aa9d91883f3258c (diff) | |
parent | 3799c820ca7c5b978d47be9c5ac1318333e5d9cb (diff) |
Merge pull request #7852 from Morph1984/new-uuid
common: Revise and fix the UUID implementation
Diffstat (limited to 'src/input_common/drivers/mouse.cpp')
-rw-r--r-- | src/input_common/drivers/mouse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/mouse.cpp b/src/input_common/drivers/mouse.cpp index d8ae7f0c12..3c9a4e7475 100644 --- a/src/input_common/drivers/mouse.cpp +++ b/src/input_common/drivers/mouse.cpp @@ -20,7 +20,7 @@ constexpr int motion_wheel_y = 4; constexpr int touch_axis_x = 10; constexpr int touch_axis_y = 11; constexpr PadIdentifier identifier = { - .guid = Common::UUID{Common::INVALID_UUID}, + .guid = Common::UUID{}, .port = 0, .pad = 0, }; |