diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-17 00:47:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-17 00:47:17 +0300 |
commit | e024f483c91b91da6d4e6c474eec143cdf0c6c84 (patch) | |
tree | fe15a9e8bcf3946298b7d7a117900952ddeaf3b7 /src/gui | |
parent | 3fad572e788b31fb8311aa945e5b907d2974541a (diff) | |
download | plus-e024f483c91b91da6d4e6c474eec143cdf0c6c84.tar.gz plus-e024f483c91b91da6d4e6c474eec143cdf0c6c84.tar.bz2 plus-e024f483c91b91da6d4e6c474eec143cdf0c6c84.tar.xz plus-e024f483c91b91da6d4e6c474eec143cdf0c6c84.zip |
Fix input array size.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/setup_input.cpp b/src/gui/setup_input.cpp index 0e120488b..3c512ecc9 100644 --- a/src/gui/setup_input.cpp +++ b/src/gui/setup_input.cpp @@ -100,7 +100,7 @@ Setup_Input::Setup_Input(): setName(_("Input")); selectedData = 0; - mActionDataSize = new int [7]; + mActionDataSize = new int [8]; for (int f = 0; f < 8; f ++) { |