Skip to content

Commit

Permalink
Merge pull request vurtun#716 from quink-black/dev
Browse files Browse the repository at this point in the history
Fix NK_INT8 type
  • Loading branch information
vurtun authored Aug 29, 2018
2 parents 956d33b + f8bcf22 commit 961b411
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ extern "C" {
#define NK_POINTER_TYPE uintptr_t
#else
#ifndef NK_INT8
#define NK_INT8 char
#define NK_INT8 signed char
#endif
#ifndef NK_UINT8
#define NK_UINT8 unsigned char
Expand Down
2 changes: 1 addition & 1 deletion src/nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ extern "C" {
#define NK_POINTER_TYPE uintptr_t
#else
#ifndef NK_INT8
#define NK_INT8 char
#define NK_INT8 signed char
#endif
#ifndef NK_UINT8
#define NK_UINT8 unsigned char
Expand Down

0 comments on commit 961b411

Please sign in to comment.