From: Elias N. <eli...@us...> - 2002-11-26 20:07:52
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/linux In directory sc8-pr-cvs1:/tmp/cvs-serv31828 Modified Files: org_lwjgl_input_Keyboard.cpp Log Message: Increased poll buffer size Index: org_lwjgl_input_Keyboard.cpp CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/linux/org_lwjgl_input_Keyboard.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/linux/org_lwjgl_input_Keyboard.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- org_lwjgl_input_Keyboard.cpp 26 Nov 2002 20:07:06 -0000 1.8 +++ org_lwjgl_input_Keyboard.cpp 26 Nov 2002 20:07:49 -0000 1.9 @@ -47,7 +47,7 @@ #define KEYBOARD_BUFFER_SIZE 50 #define KEYBOARD_SIZE 256 -#define KEY_EVENT_BACKLOG 5 +#define KEY_EVENT_BACKLOG 20 unsigned char readBuffer[KEYBOARD_BUFFER_SIZE * 2]; jfieldID fid_readBuffer; |