Skip to content

Commit f807850

Browse files
authored
Merge pull request #1812 from eliasdaler/angle_format_fix
Fix angle format specifier (it's signed, not unsigned)
2 parents 42c9bde + 961a58b commit f807850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mips/psyqo/src/xprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ static const info fmtinfo[] = {
223223
'a',
224224
1024,
225225
0,
226-
0,
226+
1,
227227
0,
228228
FIXED,
229229
},

0 commit comments

Comments
 (0)