Fixed issue #218.

This commit is contained in:
Бранимир Караџић
2019-09-27 09:43:57 -07:00
parent c584e68615
commit d60912bcb5
2 changed files with 2 additions and 1 deletions

View File

@@ -375,7 +375,7 @@ namespace bx
inline const char* strRFindUnsafe(const char* _str, int32_t _len, char _ch)
{
for (int32_t ii = _len; 0 <= ii; --ii)
for (int32_t ii = _len-1; 0 <= ii; --ii)
{
if (_str[ii] == _ch)
{