Skip to content

Commit

Permalink
Fix nk_label_wrap_colored definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Hejsil committed Jun 24, 2021
1 parent adbe553 commit 2c51dbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2c51dbc

Please sign in to comment.