diff --git a/nuklear.h b/nuklear.h index 43c681e..98babbf 100644 --- a/nuklear.h +++ b/nuklear.h @@ -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* diff --git a/src/nuklear_vertex.c b/src/nuklear_vertex.c index 17e842c..79b22c2 100644 --- a/src/nuklear_vertex.c +++ b/src/nuklear_vertex.c @@ -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*