diff --git a/out/boot.dol b/out/boot.dol index dd60b7b7..4b1393e7 100644 Binary files a/out/boot.dol and b/out/boot.dol differ diff --git a/source/gui/text.cpp b/source/gui/text.cpp index 2ac335bf..5a5b3d2f 100644 --- a/source/gui/text.cpp +++ b/source/gui/text.cpp @@ -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;