Skip to content

Commit

Permalink
3rdParty: allow disabling buttons for GC Adapter (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostlyDark authored Sep 9, 2024
1 parent 53c0c33 commit 1b45907
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/3rdParty/mupen64plus-input-gca/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ pub enum N64Button {
CRight,
CDown,
CUp,
None,
}

impl N64Button {
Expand All @@ -97,6 +98,7 @@ impl N64Button {
N64Button::CRight => 0x0100,
N64Button::CDown => 0x0400,
N64Button::CUp => 0x0800,
N64Button::None => 0x0000,
}
}
}

0 comments on commit 1b45907

Please sign in to comment.