From a8e2644708f3c2045d4f236c89f92880d683a3cc Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Tue, 14 Nov 2023 15:01:00 -0500 Subject: [PATCH] delete unnecessary if_not_init_return() check in tb_set_cell() --- termbox2.h | 1 - 1 file changed, 1 deletion(-) diff --git a/termbox2.h b/termbox2.h index a716dbd..9da4ef1 100644 --- a/termbox2.h +++ b/termbox2.h @@ -1695,7 +1695,6 @@ int tb_hide_cursor(void) { } int tb_set_cell(int x, int y, uint32_t ch, uintattr_t fg, uintattr_t bg) { - if_not_init_return(); return tb_set_cell_ex(x, y, &ch, 1, fg, bg); } -- 2.39.5