Skip to content

Commit 9fa27a6

Browse files
committed
Update CHANGELOG and Rebuild nuklear.h(3)
1 parent 14ec0a3 commit 9fa27a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nuklear.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18485,8 +18485,9 @@ nk_input_is_key_down(const struct nk_input *i, enum nk_keys key)
1848518485
NK_API nk_bool
1848618486
nk_input_want_text_keyboard(struct nk_input* i)
1848718487
{
18488+
nk_bool ret;
1848818489
NK_ASSERT(i);
18489-
nk_bool ret = !i->keyboard.text_want;
18490+
ret = !i->keyboard.text_want;
1849018491
i->keyboard.text_want = nk_true;
1849118492
return ret;
1849218493
}

0 commit comments

Comments
 (0)