|
@@ -183,7 +183,7 @@ PHYSFS_uint32 __PHYSFS_utf8codepoint(const char **_str)
|
|
|
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
|
|
if ((octet & (128+64)) != 128) /* Format isn't 10xxxxxx? */
|
|
|
return UNICODE_BOGUS_CHAR_VALUE;
|
|
return UNICODE_BOGUS_CHAR_VALUE;
|
|
|
|
|
|
|
|
- *_str += 6; /* skip to next possible start of codepoint. */
|
|
|
|
|
|
|
+ *_str += 5; /* skip to next possible start of codepoint. */
|
|
|
return UNICODE_BOGUS_CHAR_VALUE;
|
|
return UNICODE_BOGUS_CHAR_VALUE;
|
|
|
} /* else if */
|
|
} /* else if */
|
|
|
|
|
|