From d9dc58169c546e34ddac1d6052af3610c115da14 Mon Sep 17 00:00:00 2001 From: puffer Date: Mon, 11 Mar 2024 08:59:00 +0100 Subject: [PATCH] fixed typo --- nighterm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nighterm.c b/nighterm.c index c193be9..b81d48c 100644 --- a/nighterm.c +++ b/nighterm.c @@ -380,8 +380,8 @@ static unsigned char nighterm_default_font[] = { 0xff, 0xc3, 0xbd, 0xff, 0xc3, 0xbe, 0xff, 0xff }; -UNUSED static void -nighterm_priv__memcpy(void* dest, void* src, int size) +#if 0 +static void nighterm_priv__memcpy(void* dest, void* src, int size) { char* a = (char*)dest; char* b = (char*)src; @@ -390,6 +390,7 @@ nighterm_priv__memcpy(void* dest, void* src, int size) a[i] = b[i]; } } +#endif /** * @brief Draws a pixel to backbuffer of the current terminal.