Changed a false to an nk_false

This commit is contained in:
Yukyduky 2023-10-18 22:33:05 +02:00
parent 5a6569a2c9
commit b1fcf9244f
2 changed files with 2 additions and 2 deletions

View File

@ -20359,7 +20359,7 @@ nk_begin_titled(struct nk_context *ctx, const char *name, const char *title,
NK_MEMCPY(win->name_string, name, name_length);
win->name_string[name_length] = 0;
win->popup.win = 0;
win->widgets_disabled = false;
win->widgets_disabled = nk_false;
if (!ctx->active)
ctx->active = win;
} else {

View File

@ -180,7 +180,7 @@ nk_begin_titled(struct nk_context *ctx, const char *name, const char *title,
NK_MEMCPY(win->name_string, name, name_length);
win->name_string[name_length] = 0;
win->popup.win = 0;
win->widgets_disabled = false;
win->widgets_disabled = nk_false;
if (!ctx->active)
ctx->active = win;
} else {