Restore SHORT().

This commit is contained in:
sphere 2020-04-30 23:41:06 +02:00
parent 0287c6956e
commit 4eb5f09c6f
1 changed files with 2 additions and 2 deletions

View File

@ -3351,11 +3351,11 @@ INT16 V_LevelActNumWidth(UINT8 num)
INT16 result = 0;
if (num == 0)
result = ttlnum[num]->width;
result = SHORT(ttlnum[num]->width);
while (num > 0 && num <= 99)
{
result = result + ttlnum[num%10]->width;
result = result + SHORT(ttlnum[num%10]->width);
num = num/10;
}