Reset the color to #CCCCCC

This commit is contained in:
Alex 2023-04-02 15:48:58 +03:00
parent 865ad9257b
commit 16d9ce870e
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -1,5 +1,7 @@
#include <init.h>
#include "printf.h"
void init_log(const char *fmt, ...)
{
printf_libinit("\eCCCCCC[\e0088FFinit\eCCCCCC] \eAAAAAA");
@ -7,4 +9,5 @@ void init_log(const char *fmt, ...)
va_start(args, fmt);
vprintf_libinit(fmt, args);
va_end(args);
printf_libinit("\eCCCCCC");
}