Skip to content

Commit

Permalink
Fix beauty error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sainan committed Oct 26, 2024
1 parent c588569 commit 51151c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wooting-analog-sdk/src/keycode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ lazy_static! {
bimap
};

//VirtualKey, Scancode
static ref VIRTUALKEY_OVERRIDE: BiMap<u8, u16> = {
//<VirtualKey, Scancode>
static ref VIRTUALKEY_OVERRIDE: BiMap<u8, u16> = {
let mut bimap: BiMap<u8, u16> = BiMap::new();
bimap.insert(0x60, 0x0052); //NUMPAD0
bimap.insert(0x61, 0x004f); //NUMPAD1
Expand Down

0 comments on commit 51151c3

Please sign in to comment.