make style

This commit is contained in:
Philippe Teuwen 2020-05-09 00:24:20 +02:00
commit c349aa0a13

View file

@ -49,14 +49,14 @@ typedef enum LogoMode { UTF8, ANSI, ASCII } LogoMode;
static void showBanner_logo(LogoMode mode) { static void showBanner_logo(LogoMode mode) {
switch (mode) { switch (mode) {
case UTF8: { case UTF8: {
const char* sq = "\xE2\x96\x88"; // square block const char *sq = "\xE2\x96\x88"; // square block
const char* tr = "\xE2\x95\x97"; // top right corner const char *tr = "\xE2\x95\x97"; // top right corner
const char* tl = "\xE2\x95\x94"; // top left corner const char *tl = "\xE2\x95\x94"; // top left corner
const char* br = "\xE2\x95\x9D"; // bottom right corner const char *br = "\xE2\x95\x9D"; // bottom right corner
const char* bl = "\xE2\x95\x9A"; // bottom left corner const char *bl = "\xE2\x95\x9A"; // bottom left corner
const char* hl = "\xE2\x95\x90"; // horiz line const char *hl = "\xE2\x95\x90"; // horiz line
const char* vl = "\xE2\x95\x91"; // vert line const char *vl = "\xE2\x95\x91"; // vert line
const char* __ = " "; const char *__ = " ";
PrintAndLogEx(NORMAL, " " _BLUE_("%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s"), PrintAndLogEx(NORMAL, " " _BLUE_("%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s"),
sq, sq, sq, sq, sq, sq, tr, __, sq, sq, sq, tr, __, __, __, sq, sq, sq, tr, sq, sq, sq, sq, sq, tr, __); sq, sq, sq, sq, sq, sq, tr, __, sq, sq, sq, tr, __, __, __, sq, sq, sq, tr, sq, sq, sq, sq, sq, tr, __);