Using S7; edit Makefile for debug, windows compilation

This commit is contained in:
2022-12-12 16:48:21 +00:00
parent 998cb11218
commit 18eefd4937
483 changed files with 97382 additions and 301477 deletions

View File

@@ -86,5 +86,9 @@ void nuke_nel(int cols) {
}
void nuke_label(const char *s) {
nk_label(ctx, NK_TEXT_LEFT, s);
nk_label(ctx, s, NK_TEXT_LEFT);
}
void nuke_edit_str(char *str) {
nk_edit_string_zero_terminated(ctx, NK_EDIT_BOX|NK_EDIT_NO_HORIZONTAL_SCROLL, str, 130, nk_filter_ascii);
}