problem with max() macro. this one slipped though again
This commit is contained in:
parent
531776becf
commit
4945034792
|
@ -311,7 +311,7 @@ winConfigKeyboard (DeviceIntPtr pDevice)
|
||||||
default:
|
default:
|
||||||
case 3: g_winInfo.keyboard.delay = 1000; break;
|
case 3: g_winInfo.keyboard.delay = 1000; break;
|
||||||
}
|
}
|
||||||
g_winInfo.keyboard.rate = max(1,kbd_speed);
|
g_winInfo.keyboard.rate = (kbd_speed>0)?kbd_speed:1;
|
||||||
winMsgVerb(X_PROBED, 1, "Setting autorepeat to delay=%d, rate=%d\n",
|
winMsgVerb(X_PROBED, 1, "Setting autorepeat to delay=%d, rate=%d\n",
|
||||||
g_winInfo.keyboard.delay, g_winInfo.keyboard.rate);
|
g_winInfo.keyboard.delay, g_winInfo.keyboard.rate);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue