summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bridle <bridle.benjamin@gmail.com>2024-04-22 11:35:49 +1200
committerBen Bridle <bridle.benjamin@gmail.com>2024-04-22 11:35:49 +1200
commit34a933ceb404aa710c91cea496140b5fc2672bab (patch)
tree110cbc71540f324604cdc03caa8ebf16d510c522
parent881c4f82f7d08180d805bae71e9c494775b07a24 (diff)
downloadbedrock-pc-34a933ceb404aa710c91cea496140b5fc2672bab.zip
Remove unused constants
-rw-r--r--src/devices/input.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/input.rs b/src/devices/input.rs
index a065531..8e0bd34 100644
--- a/src/devices/input.rs
+++ b/src/devices/input.rs
@@ -14,8 +14,6 @@ const CONFIRM: u8 = 0x08;
const CANCEL: u8 = 0x04;
const NEXT: u8 = 0x02;
const PREVIOUS: u8 = 0x01;
-const AUX1: u8 = 0x02;
-const AUX2: u8 = 0x01;
macro_rules! test { ($value:expr, $mask:expr) => { $value & $mask != 0 }; }