Do not print space in front of positive integers

This commit is contained in:
Stefan `Sec` Zehl 2011-07-17 10:47:21 +02:00
parent 60576f30de
commit c7f207bb9e
1 changed files with 2 additions and 0 deletions

View File

@ -192,6 +192,8 @@ int DoInt(int sx, int sy, int num){
*o='-';
if(neg==2)
*o='0';
if(neg==0)
o++;
return DoString(sx,sy,o);
#undef mxlen
};