summaryrefslogtreecommitdiffstats
path: root/src/jake2/sys
diff options
context:
space:
mode:
authorCarsten Weisse <[email protected]>2006-10-26 22:02:56 +0000
committerCarsten Weisse <[email protected]>2006-10-26 22:02:56 +0000
commit08d5dc327ea642eeaac8d9ad3aa2bf1c0cbd1986 (patch)
tree1d4cb1375ec4a6afb0585f3a92a169633adb7bdc /src/jake2/sys
parent67f358ca73f408481f6ee7d32658d92be38585db (diff)
switch to lwjgl 1.0beta3 (sound and gfx tested on MacBook Pro)
Diffstat (limited to 'src/jake2/sys')
-rw-r--r--src/jake2/sys/LWJGLKBD.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/jake2/sys/LWJGLKBD.java b/src/jake2/sys/LWJGLKBD.java
index 071a212..9373cba 100644
--- a/src/jake2/sys/LWJGLKBD.java
+++ b/src/jake2/sys/LWJGLKBD.java
@@ -25,11 +25,7 @@ public class LWJGLKBD extends KBD {
{
if (!Keyboard.isCreated()) Keyboard.create();
if (!Mouse.isCreated()) Mouse.create();
-
- if (!Keyboard.isBuffered()) Keyboard.enableBuffer();
- if (!Keyboard.isTranslationEnabled()) Keyboard.enableTranslation();
- if (!Mouse.isBuffered()) Mouse.enableBuffer();
-
+
if (lwjglKeycodeMap == null) lwjglKeycodeMap = new char[256];
if (pressed == null) pressed = new int[256];