Fixed #227 with API argument name mismatch

This commit is contained in:
vurtun 2016-08-31 19:38:32 +02:00
parent 4cc1778f9c
commit d9b2cf2035
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ NK_API void nk_set_user_data(struct nk_context*, nk_handle h
/* window */ /* window */
NK_API int nk_begin(struct nk_context*, struct nk_panel*, const char *title, struct nk_rect bounds, nk_flags flags); NK_API int nk_begin(struct nk_context*, struct nk_panel*, const char *title, struct nk_rect bounds, nk_flags flags);
NK_API int nk_begin_titled(struct nk_context*, struct nk_panel*, const char *name, const char *id, struct nk_rect bounds, nk_flags flags); NK_API int nk_begin_titled(struct nk_context*, struct nk_panel*, const char *name, const char *title, struct nk_rect bounds, nk_flags flags);
NK_API void nk_end(struct nk_context*); NK_API void nk_end(struct nk_context*);
NK_API struct nk_window* nk_window_find(struct nk_context *ctx, const char *name); NK_API struct nk_window* nk_window_find(struct nk_context *ctx, const char *name);