diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2019-06-17 02:32:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 02:32:34 +0300 |
commit | d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6 (patch) | |
tree | ecadafad46aa67f4c8774d15bd96268e806cfbda | |
parent | 0add48abf589330ae6fe11e304c111d9f52ce009 (diff) |
fixed rebind bug
-rw-r--r-- | src/Pad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Pad.cpp b/src/Pad.cpp index 1615b0cd..ab00e88f 100644 --- a/src/Pad.cpp +++ b/src/Pad.cpp @@ -1837,7 +1837,7 @@ int32 *CPad::EditCodesForControls(int32 *pRsKeys, int32 nSize) *pRsKeys = i; } - for ( int32 i = 0; i < 255; i++ ) + for ( int32 i = 0; i < 12; i++ ) { if ( GetPad(0)->GetFJustDown(i) ) *pRsKeys = i + rsF1; |