diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-11-09 16:17:54 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2019-11-12 23:34:28 +0100 |
commit | be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587 (patch) | |
tree | 3f802ec81aa739a423db3946f70244bfca0c536f /src/core/Pad.cpp | |
parent | fixes (diff) | |
download | re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.tar re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.tar.gz re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.tar.bz2 re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.tar.lz re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.tar.xz re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.tar.zst re3-be7d1d1a6327426dbe24c5b7b8eb16e5bb83a587.zip |
Diffstat (limited to 'src/core/Pad.cpp')
-rw-r--r-- | src/core/Pad.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/Pad.cpp b/src/core/Pad.cpp index e5178ef3..51102c7b 100644 --- a/src/core/Pad.cpp +++ b/src/core/Pad.cpp @@ -36,7 +36,7 @@ CKeyboardState &CPad::OldKeyState = *(CKeyboardState*)0x6F1E70; CKeyboardState &CPad::NewKeyState = *(CKeyboardState*)0x6E60D0; CKeyboardState &CPad::TempKeyState = *(CKeyboardState*)0x774DE8; -char CPad::KeyBoardCheatString[18]; +char CPad::KeyBoardCheatString[20]; CMouseControllerState &CPad::OldMouseControllerState = *(CMouseControllerState*)0x8472A0; CMouseControllerState &CPad::NewMouseControllerState = *(CMouseControllerState*)0x8809F0; @@ -427,7 +427,7 @@ void CPad::StartShake_Train(float fX, float fY) void CPad::AddToPCCheatString(char c) { - for ( int32 i = ARRAY_SIZE(KeyBoardCheatString); i >= 0; i-- ) + for ( int32 i = ARRAY_SIZE(KeyBoardCheatString) - 2; i >= 0; i-- ) KeyBoardCheatString[i + 1] = KeyBoardCheatString[i]; KeyBoardCheatString[0] = c; |