guarded write_banner with NO_UTF8_ENCODING

This commit is contained in:
Charlton, Scott R 2021-08-30 17:46:49 -06:00
parent 082edbb51d
commit 09a2680a6e

View File

@ -286,6 +286,7 @@ write_banner(void)
#ifdef TESTING
return OK;
#endif
#ifndef NO_UTF8_ENCODING
char buffer[80];
int len, indent;
screen_msg(
@ -329,7 +330,7 @@ write_banner(void)
screen_msg(
" █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█\n\n");
#endif
return 0;
}