Forgot the semicolon in nuklear.h

This commit is contained in:
Wladislav ヴラド Artsimovich 2022-04-15 13:35:13 +09:00
parent 398e338bff
commit cb0e05beea
3 changed files with 4 additions and 6 deletions

View File

@ -2015,7 +2015,7 @@ NK_API void nk_window_show_if(struct nk_context*, const char *name, enum nk_show
/// __color__ | Color of the horizontal line /// __color__ | Color of the horizontal line
/// __rounding__ | Whether or not to make the line round /// __rounding__ | Whether or not to make the line round
*/ */
NK_API void nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, NK_BOOL rounding) NK_API void nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, nk_bool rounding);
/* ============================================================================= /* =============================================================================
* *
* LAYOUT * LAYOUT
@ -20700,9 +20700,8 @@ nk_window_set_focus(struct nk_context *ctx, const char *name)
} }
ctx->active = win; ctx->active = win;
} }
NK_API void NK_API void
nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, NK_BOOL rounding) nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, nk_bool rounding)
{ {
struct nk_rect space; struct nk_rect space;
enum nk_widget_layout_states state = nk_widget(&space, ctx); enum nk_widget_layout_states state = nk_widget(&space, ctx);

View File

@ -1794,7 +1794,7 @@ NK_API void nk_window_show_if(struct nk_context*, const char *name, enum nk_show
/// __color__ | Color of the horizontal line /// __color__ | Color of the horizontal line
/// __rounding__ | Whether or not to make the line round /// __rounding__ | Whether or not to make the line round
*/ */
NK_API void nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, NK_BOOL rounding) NK_API void nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, nk_bool rounding);
/* ============================================================================= /* =============================================================================
* *
* LAYOUT * LAYOUT

View File

@ -669,9 +669,8 @@ nk_window_set_focus(struct nk_context *ctx, const char *name)
} }
ctx->active = win; ctx->active = win;
} }
NK_API void NK_API void
nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, NK_BOOL rounding) nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, nk_bool rounding)
{ {
struct nk_rect space; struct nk_rect space;
enum nk_widget_layout_states state = nk_widget(&space, ctx); enum nk_widget_layout_states state = nk_widget(&space, ctx);