Do not print space in front of positive integers
This commit is contained in:
parent
60576f30de
commit
c7f207bb9e
|
@ -192,6 +192,8 @@ int DoInt(int sx, int sy, int num){
|
||||||
*o='-';
|
*o='-';
|
||||||
if(neg==2)
|
if(neg==2)
|
||||||
*o='0';
|
*o='0';
|
||||||
|
if(neg==0)
|
||||||
|
o++;
|
||||||
return DoString(sx,sy,o);
|
return DoString(sx,sy,o);
|
||||||
#undef mxlen
|
#undef mxlen
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue