1
0
mirror of https://github.com/fumiama/CMoe-Counter.git synced 2025-02-10 15:53:03 +01:00

优化显示长度

This commit is contained in:
fumiama 2022-03-02 18:15:47 +08:00
parent 3b43084aee
commit 010ff08a36

4
cmoe.c
View File

@ -117,9 +117,9 @@ static void return_count(char* name, char* theme) {
char cntstrbuf[11];
sprintf(cntstrbuf, "%010u", d->count);
free(spb);
char* cntstr;
char* cntstr = cntstrbuf;
for(int i = 0; i < 10; i++) if(cntstrbuf[i] != '0') {
cntstr = cntstrbuf+(i>2)?(i-2):0;
if(i > 2) cntstr = cntstrbuf+i-2;
break;
}
int isbig = 0;