mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Off by one ;)
This commit is contained in:
parent
6d68e22cd1
commit
da68023f7a
|
@ -1195,7 +1195,7 @@ void CSqlScore::FuzzyString(char *pString)
|
|||
break;
|
||||
|
||||
newString[pos++] = pString[i];
|
||||
if (pString[i] != '\\' && str_utf8_isstart(pString[i]))
|
||||
if (pString[i] != '\\' && str_utf8_isstart(pString[i+1]))
|
||||
newString[pos++] = '%';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue