Update tinyobj_loader_c.h (#3474)

temporary quickfix for issue #3473
This commit is contained in:
SuperUserNameMan 2023-10-27 17:13:10 +02:00 committed by GitHub
parent 2db7c727b6
commit b46505b13d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1269,6 +1269,11 @@ int tinyobj_parse_obj(tinyobj_attrib_t *attrib, tinyobj_shape_t **shapes,
if (is_line_ending(buf, i, end_idx)) {
line_infos[line_no].pos = prev_pos;
line_infos[line_no].len = i - prev_pos;
// ---- QUICK BUG FIX : https://github.com/raysan5/raylib/issues/3473
if ( i > 0 && buf[i-1] == '\r' ) line_infos[line_no].len--;
// --------
prev_pos = i + 1;
line_no++;
}