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:
parent
626f0ecb98
commit
d1cd17a9df
1 changed files with 4 additions and 1 deletions
|
@ -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')
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue