1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-20 19:39:41 +00:00

bug-fix: D-key was assigned twice

This commit is contained in:
Marc Zinnschlag 2010-06-22 09:02:24 +02:00
parent 6b6f5b95ec
commit 448f9f37c2

View file

@ -70,7 +70,7 @@ namespace MWInput
poller.bind(A_MoveLeft, KC_A);
poller.bind(A_MoveRight, KC_D);
poller.bind(A_MoveForward, KC_W);
poller.bind(A_MoveBackward, KC_D);
poller.bind(A_MoveBackward, KC_S);
// Use shift and ctrl for up and down
poller.bind(A_MoveUp, KC_LSHIFT);