fix issues

This commit is contained in:
BotoX
2019-09-18 17:11:29 +02:00
parent e4e19587bb
commit 4f43ff3bf3
2 changed files with 2 additions and 3 deletions
@@ -2800,7 +2800,7 @@ stock int TimeStrToSeconds(const char[] str)
{
int seconds = 0;
int maxlen = strlen(str);
for(int i = 0; i < maxlen; i++)
for(int i = 0; i < maxlen;)
{
int val = 0;
i += StringToIntEx(str[i], val);