diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2019-06-17 01:32:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 01:32:34 +0200 |
commit | d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6 (patch) | |
tree | ecadafad46aa67f4c8774d15bd96268e806cfbda | |
parent | got rid of upper case types (diff) | |
download | re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.tar re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.tar.gz re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.tar.bz2 re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.tar.lz re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.tar.xz re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.tar.zst re3-d92c9085dacbf35c04da05d2d8a2bc3b2fee40c6.zip |
Diffstat (limited to '')
-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; |