Compare commits

..

No commits in common. "master" and "UIDemo1" have entirely different histories.

8
main.c
View file

@ -21,7 +21,6 @@ struct termios orig_termios;
int main() {
clear();
enableRawMode();
char c;
@ -69,10 +68,9 @@ int main() {
}
void drawWin() {
//clear();
gotoxy(1, 1);
clear();
printf("Kaari - Binarier font editor\r\n");
printf("+--------+ Char \"%c\" / %d / 0x%X \r\n", currchar, currchar, currchar);
printf("+--------+\r\n");
int cstart=32;
int cperline=16;
@ -89,7 +87,7 @@ void drawWin() {
printf("\r\n");
}
printf("+--------+\r\nArrows:Move PgUP/DWN:Char Q:Quit");
printf("+--------+\r\nQ:Quit PgUP/DWN:Switch char\r\n");
resetCurPos();