Corrected separation
This commit is contained in:
parent
ae845fcb0b
commit
b1209dbb2e
|
@ -9358,7 +9358,7 @@ nk_draw_list_alloc_vertices(struct nk_draw_list *list, nk_size count)
|
|||
* instead of specifing `GL_UNSIGNED_SHORT` you have to define `GL_UNSIGNED_INT`.
|
||||
* Sorry for the inconvenience. */
|
||||
NK_ASSERT((sizeof(nk_draw_index) == 2 && list->vertex_count < NK_USHORT_MAX &&
|
||||
"To many verticies for 16-bit vertex indicies. Please read comment above on how to solve this problem");
|
||||
"To many verticies for 16-bit vertex indicies. Please read comment above on how to solve this problem"));
|
||||
return vtx;
|
||||
}
|
||||
NK_INTERN nk_draw_index*
|
||||
|
|
|
@ -234,7 +234,7 @@ nk_draw_list_alloc_vertices(struct nk_draw_list *list, nk_size count)
|
|||
* instead of specifing `GL_UNSIGNED_SHORT` you have to define `GL_UNSIGNED_INT`.
|
||||
* Sorry for the inconvenience. */
|
||||
NK_ASSERT((sizeof(nk_draw_index) == 2 && list->vertex_count < NK_USHORT_MAX &&
|
||||
"To many verticies for 16-bit vertex indicies. Please read comment above on how to solve this problem");
|
||||
"To many verticies for 16-bit vertex indicies. Please read comment above on how to solve this problem"));
|
||||
return vtx;
|
||||
}
|
||||
NK_INTERN nk_draw_index*
|
||||
|
|
Loading…
Reference in New Issue