Fixed #194 example/extended.c compile error

This commit is contained in:
vurtun 2016-08-04 08:59:17 +02:00
parent 7f4e5eb76e
commit 69df3f5369
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ ui_piemenu(struct nk_context *ctx, struct nk_vec2 pos, float radius,
content.w = 30; content.h = 30;
content.x = center.x + ((rx * (float)cos(a) - ry * (float)sin(a)) - content.w/2.0f);
content.y = center.y + (rx * (float)sin(a) + ry * (float)cos(a) - content.h/2.0f);
nk_draw_image(out, content, &icons[i]);
nk_draw_image(out, content, &icons[i], nk_rgb(255,255,255));
a_min = a_max; a_max += step;
}
}
@ -157,7 +157,7 @@ ui_piemenu(struct nk_context *ctx, struct nk_vec2 pos, float radius,
bounds.h = inner.h / 2.0f;
bounds.x = inner.x + inner.w/2 - bounds.w/2;
bounds.y = inner.y + inner.h/2 - bounds.h/2;
nk_draw_image(out, bounds, &icons[active_item]);
nk_draw_image(out, bounds, &icons[active_item], nk_rgb(255,255,255));
}
nk_layout_space_end(ctx);
if (!nk_input_is_mouse_down(&ctx->input, NK_BUTTON_RIGHT)) {