aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jake2/sys/LWJGLKBD.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/jake2/sys/LWJGLKBD.java b/src/jake2/sys/LWJGLKBD.java
index ee5117e..2cb8e27 100644
--- a/src/jake2/sys/LWJGLKBD.java
+++ b/src/jake2/sys/LWJGLKBD.java
@@ -84,9 +84,6 @@ public class LWJGLKBD extends KBD {
while (Mouse.next()) {
int button = Mouse.getEventButton();
if (button >= 0) {
- if (button == 1 && mouseHasTwoButtons) {
- button = 2; // A three button mouse numbering scheme...
- }
Do_Key_Event(Key.K_MOUSE1 + button, Mouse.getEventButtonState());
} else {
button = Mouse.getEventDWheel();