1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-14 07:56:45 +00:00

thermosphere: fix fmt.c "l" handling

This commit is contained in:
TuxSH 2020-01-19 16:56:29 +00:00
parent 626f0ecb98
commit d1cd17a9df

View file

@ -206,7 +206,10 @@ int vsprintf(char *buf, const char *fmt, va_list args)
fmt++;
integerType = 1;
}
else
{
integerType = sizeof(unsigned long) == 8 ? 1 : 0;
}
}
else if(*fmt == 'h')
{