1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:37:45 +02:00

Removed some useless code

This commit is contained in:
Sean Qureshi 2013-08-03 04:10:47 -07:00
parent 9b37ca7894
commit c571696c46

3
chat.c
View File

@ -107,19 +107,16 @@ static void chat_onKey(ToxWindow* self, int key) {
}
else if(key == '\n') {
printf("Get times to int");
int inthour = timeinfo->tm_hour; //Pretty bad, but it gets the job done
int intmin = timeinfo->tm_min;
char min[2];
char hour[2];
printf("Turn to varible");
sprintf(hour,"%d",inthour);
if (intmin < 10) {
sprintf(min,"0%d",intmin);
} else {
sprintf(min,"%d",intmin);
}
printf("Display");
wattron(ctx->history, COLOR_PAIR(2));
wprintw(ctx->history,"%s",hour);
wprintw(ctx->history,":%s ",min);