mirror of
https://github.com/fumiama/CMoe-Counter.git
synced 2024-11-23 22:00:56 +01:00
优化显示长度
This commit is contained in:
parent
a3136d5c08
commit
f8ada3eaa9
4
cmoe.c
4
cmoe.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user