Changed the characters used

This commit is contained in:
Dreaded_X 2021-01-15 03:22:45 +01:00
parent 0ad76c4a44
commit b26e2e7876

View File

@ -133,12 +133,29 @@ void draw() {
} else if (i > 0) {
cout = '\033';
cout = '[';
cout = '3';
cout = '9';
cout = 48+i;
cout = 'm';
}
char c = " RGOBMCW=#"[i];
cout = c;
/* char c = " RGOBMCW=#"[i]; */
/* cout = c; */
switch (i) {
case 0:
cout = ' ';
break;
case 8:
cout = 0xCD;
break;
case 9:
cout = 0xB0;
break;
default:
cout = 0xDB;
break;
}
}
cout = '\n';
cout = '\r';