diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-01-08 11:39:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-01-08 11:39:49 +0300 |
commit | 7e89857e908f3e04fb9da9d3ffcc4cfed118d5ad (patch) | |
tree | 393b8f228e3df776fb06f00c9c18df15376b366d /src/client.cpp | |
parent | 276a5f9f7ef2f1fd5fad7339db2d2a9154ce9870 (diff) | |
download | plus-7e89857e908f3e04fb9da9d3ffcc4cfed118d5ad.tar.gz plus-7e89857e908f3e04fb9da9d3ffcc4cfed118d5ad.tar.bz2 plus-7e89857e908f3e04fb9da9d3ffcc4cfed118d5ad.tar.xz plus-7e89857e908f3e04fb9da9d3ffcc4cfed118d5ad.zip |
fix named input actions in gui before logging into game.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 2eae9565f..7c7b1e016 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -413,6 +413,10 @@ void Client::gameInit() Joystick::init(); createWindows(); + keyboard.update(); + if (joystick) + joystick->update(); + // Initialize default server mCurrentServer.hostname = mOptions.serverName; mCurrentServer.port = mOptions.serverPort; |