Skip to content

Commit

Permalink
Built nuklear.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Ahnstedt committed Dec 12, 2023
1 parent de3bf05 commit 319f79f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -6180,14 +6180,14 @@ NK_LIB void nk_property(struct nk_context *ctx, const char *name, struct nk_prop
#ifndef STBTT_malloc
static void*
nk_stbtt_malloc(nk_size size, void *user_data) {
struct nk_allocator *alloc = (struct nk_allocator *) user_data;
return alloc->alloc(alloc->userdata, 0, size);
struct nk_allocator *alloc = (struct nk_allocator *) user_data;
return alloc->alloc(alloc->userdata, 0, size);
}

static void
nk_stbtt_free(void *ptr, void *user_data) {
struct nk_allocator *alloc = (struct nk_allocator *) user_data;
alloc->free(alloc->userdata, ptr);
struct nk_allocator *alloc = (struct nk_allocator *) user_data;
alloc->free(alloc->userdata, ptr);
}

#define STBTT_malloc(x,u) nk_stbtt_malloc(x,u)
Expand Down Expand Up @@ -24750,7 +24750,7 @@ nk_draw_checkbox(struct nk_command_buffer *out,
text.text = style->text_normal;
}

text.text = nk_rgb_factor(text.text, style->color_factor);
text.text = nk_rgb_factor(text.text, style->color_factor);
text.padding.x = 0;
text.padding.y = 0;
text.background = style->text_background;
Expand Down Expand Up @@ -24793,7 +24793,7 @@ nk_draw_option(struct nk_command_buffer *out,
text.text = style->text_normal;
}

text.text = nk_rgb_factor(text.text, style->color_factor);
text.text = nk_rgb_factor(text.text, style->color_factor);
text.padding.x = 0;
text.padding.y = 0;
text.background = style->text_background;
Expand Down

0 comments on commit 319f79f

Please sign in to comment.