Cleanups
This commit is contained in:
parent
1397468496
commit
91f5ca4105
|
@ -339,8 +339,9 @@ static char* rcheevos_unescape_string(const char* string, size_t length)
|
|||
|
||||
if (utf16_to_char_string(utf16, utf8, sizeof(utf8)))
|
||||
{
|
||||
memcpy(buffer_it, utf8, strlen(utf8));
|
||||
buffer_it += strlen(utf8);
|
||||
size_t utf8_len = strlen(utf8);
|
||||
memcpy(buffer_it, utf8, utf8_len);
|
||||
buffer_it += utf8_len;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue