Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinAlavik committed Mar 11, 2024
1 parent ecb9f30 commit d9dc581
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nighterm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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.
Expand Down

0 comments on commit d9dc581

Please sign in to comment.