diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-07-22 14:56:28 +0300 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-07-22 18:51:28 +0300 |
commit | 1dc6fbda1fbd9a731eb20b3ef71c3dda989e511e (patch) | |
tree | 5578c27b5739341d34def86586a68f1f1129e1bb /src/core/Pad.cpp | |
parent | afc38c0d72966e7b7c421e29799655a76a2122b3 (diff) |
64-bit on Windows
Diffstat (limited to 'src/core/Pad.cpp')
-rw-r--r-- | src/core/Pad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Pad.cpp b/src/core/Pad.cpp index 851625d2..944d7b2c 100644 --- a/src/core/Pad.cpp +++ b/src/core/Pad.cpp @@ -2634,7 +2634,7 @@ void CPad::ResetCheats(void) char *CPad::EditString(char *pStr, int32 nSize) { - int32 pos = strlen(pStr); + int32 pos = (int32)strlen(pStr); // letters for ( int32 i = 0; i < ('Z' - 'A' + 1); i++ ) |