diff options
Diffstat (limited to 'core/fxcrt/fx_basic_gcc.cpp')
-rw-r--r-- | core/fxcrt/fx_basic_gcc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_basic_gcc.cpp b/core/fxcrt/fx_basic_gcc.cpp index 8a65576b39..87c2533ab8 100644 --- a/core/fxcrt/fx_basic_gcc.cpp +++ b/core/fxcrt/fx_basic_gcc.cpp @@ -23,7 +23,7 @@ IntType FXSYS_StrToInt(const CharType* str) { IntType num = 0; while (*str && FXSYS_isDecimalDigit(*str)) { - IntType val = FXSYS_toDecimalDigit(*str); + IntType val = FXSYS_DecimalCharToInt(*str); if (num > (std::numeric_limits<IntType>::max() - val) / 10) { if (neg && std::numeric_limits<IntType>::is_signed) { // Return MIN when the represented number is signed type and is smaller |