Linux: Fixed test for XkbSetDetectableAutoRepeat success

This commit is contained in:
Elias Naur 2008-01-19 08:57:20 +00:00
parent e448bb0c29
commit 8e2233167d
2 changed files with 3 additions and 4 deletions

View file

@ -151,7 +151,7 @@ final class LinuxKeyboard {
private static void setDetectableKeyRepeat(long display, boolean enabled) {
boolean success = nSetDetectableKeyRepeat(display, enabled);
if (!success)
LWJGLUtil.log("Failed to set detectable key repeat");
LWJGLUtil.log("Failed to set detectable key repeat to " + enabled);
}
private static native boolean nSetDetectableKeyRepeat(long display, boolean enabled);