diff --git a/nuklear.h b/nuklear.h index bc3dfef8..6e541edf 100644 --- a/nuklear.h +++ b/nuklear.h @@ -3102,7 +3102,7 @@ enum nk_text_alignment { NK_API void nk_label(struct nk_context*, struct nk_slice, nk_flags align); NK_API void nk_label_colored(struct nk_context*, struct nk_slice, nk_flags align, struct nk_color); NK_API void nk_label_wrap(struct nk_context*, struct nk_slice); -NK_API void nk_label_colored_wrap(struct nk_context*, struct nk_slice, struct nk_color); +NK_API void nk_label_wrap_colored(struct nk_context*, struct nk_slice, struct nk_color); NK_API void nk_image(struct nk_context*, struct nk_image); NK_API void nk_image_color(struct nk_context*, struct nk_image, struct nk_color); #ifdef NK_INCLUDE_STANDARD_VARARGS diff --git a/src/nuklear.h b/src/nuklear.h index be17d494..fd387c8a 100644 --- a/src/nuklear.h +++ b/src/nuklear.h @@ -2881,7 +2881,7 @@ enum nk_text_alignment { NK_API void nk_label(struct nk_context*, struct nk_slice, nk_flags align); NK_API void nk_label_colored(struct nk_context*, struct nk_slice, nk_flags align, struct nk_color); NK_API void nk_label_wrap(struct nk_context*, struct nk_slice); -NK_API void nk_label_colored_wrap(struct nk_context*, struct nk_slice, struct nk_color); +NK_API void nk_label_wrap_colored(struct nk_context*, struct nk_slice, struct nk_color); NK_API void nk_image(struct nk_context*, struct nk_image); NK_API void nk_image_color(struct nk_context*, struct nk_image, struct nk_color); #ifdef NK_INCLUDE_STANDARD_VARARGS