- just in case people don't update their language file.

This commit is contained in:
Fledge68 2023-03-22 05:26:14 -05:00
parent 290b75fcd5
commit bd6c18802c
2 changed files with 2 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

View File

@ -34,6 +34,7 @@ static inline bool fmtCount(const wstringEx &format, int &i, int &s)
case L'%':
state = 0;
break;
case L'u':
case L'i':
case L'd':
state = 0;
@ -51,7 +52,7 @@ static inline bool fmtCount(const wstringEx &format, int &i, int &s)
return true;
}
// Only handles the cases i need for translations : plain %i and %s
// Only handles the cases i need for translations : plain %i, %d, %u, and %s
bool checkFmt(const wstringEx &ref, const wstringEx &format)
{
int s;