diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-05-11 15:54:32 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-05-11 15:54:32 +0200 |
| commit | f0b060dadd041455edbfc9537a1061a8adf7b86b (patch) | |
| tree | 802156c8f156bdadc8a4a56e53b464417fd341fc /src | |
| parent | b1eabd758349fafb92871254c34ff7e207b508be (diff) | |
| download | box64-f0b060dadd041455edbfc9537a1061a8adf7b86b.tar.gz box64-f0b060dadd041455edbfc9537a1061a8adf7b86b.zip | |
[BOX32] Fixed an issue with *printf format handling missing # (help Borderlands 2 / PreSequel Linux version, probably other too)
Diffstat (limited to 'src')
| -rwxr-xr-x | src/libtools/myalign32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libtools/myalign32.c b/src/libtools/myalign32.c index c3228714..792242f4 100755 --- a/src/libtools/myalign32.c +++ b/src/libtools/myalign32.c @@ -70,6 +70,7 @@ void myStackAlign32(const char* fmt, uint32_t* st, uint64_t* mystack) case '8': case '9': case '.': + case '#': case '+': case '-': ++p; break; // formating, ignored case 'm': state = 0; ++p; break; // no argument |