mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-13 03:13:02 +01:00
By popular demand, I made a patch to add seconds to the timestamp
This commit is contained in:
parent
6f331d6fcb
commit
1b53b8ecc4
61
seconds.patch
Normal file
61
seconds.patch
Normal file
@ -0,0 +1,61 @@
|
||||
--- chat.c 2013-08-02 17:41:08.866583333 -0700
|
||||
+++ chat2.c 2013-08-02 17:38:13.672991322 -0700
|
||||
@@ -49,8 +49,10 @@
|
||||
|
||||
int inthour = timeinfo->tm_hour;
|
||||
int intmin = timeinfo->tm_min;
|
||||
+ int intsec = timeinfo->tm_sec;
|
||||
char min[2];
|
||||
char hour[2];
|
||||
+ char sec[2];
|
||||
sprintf(hour,"%d",inthour);
|
||||
if (intmin < 10) {
|
||||
sprintf(min,"0%d",intmin);
|
||||
@@ -58,10 +60,17 @@
|
||||
sprintf(min,"%d",intmin);
|
||||
}
|
||||
|
||||
+ if (intsec < 10) {
|
||||
+ sprintf(sec,"0%d",intsec);
|
||||
+ } else {
|
||||
+ sprintf(sec,"%d",intsec);
|
||||
+ }
|
||||
+
|
||||
|
||||
wattron(ctx->history, COLOR_PAIR(2));
|
||||
wprintw(ctx->history,"%s",hour);
|
||||
- wprintw(ctx->history,":%s ",min);
|
||||
+ wprintw(ctx->history,":%s",min);
|
||||
+ wprintw(ctx->history,":%s",sec);
|
||||
wattron(ctx->history, COLOR_PAIR(4));
|
||||
wprintw(ctx->history, "%s: ", now);
|
||||
wattron(ctx->history, COLOR_PAIR(4));
|
||||
@@ -111,8 +120,10 @@
|
||||
|
||||
int inthour = timeinfo->tm_hour; //Pretty bad, but it gets the job done
|
||||
int intmin = timeinfo->tm_min;
|
||||
+ int intsec = timeinfo ->tm_sec;
|
||||
char min[2];
|
||||
char hour[2];
|
||||
+ char sec[2];
|
||||
sprintf(hour,"%d",inthour);
|
||||
if (intmin < 10) {
|
||||
sprintf(min,"0%d",intmin);
|
||||
@@ -120,9 +131,16 @@
|
||||
sprintf(min,"%d",intmin);
|
||||
}
|
||||
|
||||
+ if (intsec < 10) {
|
||||
+ sprintf(sec,"0%d",intsec);
|
||||
+ } else {
|
||||
+ sprintf(sec,"%d",intsec);
|
||||
+ }
|
||||
+
|
||||
wattron(ctx->history, COLOR_PAIR(2));
|
||||
wprintw(ctx->history,"%s",hour);
|
||||
- wprintw(ctx->history,":%s ",min);
|
||||
+ wprintw(ctx->history,":%s",min);
|
||||
+ wprintw(ctx->history,":%s ",sec);
|
||||
wattron(ctx->history, COLOR_PAIR(1));
|
||||
wprintw(ctx->history, "you: ", ctx->line);
|
||||
wattroff(ctx->history, COLOR_PAIR(1));
|
Loading…
Reference in New Issue
Block a user