IopBios: allow %u string formatting in IOP kprintf

This commit is contained in:
GovanifY
2025-06-10 13:54:49 +02:00
parent 4c9d2f99b1
commit 1aa922f700

View File

@@ -1026,6 +1026,8 @@ namespace R3000A
case 'O':
case 'x':
case 'X':
case 'u':
case 'U':
printed_bytes = snprintf(ptmp, remaining_buf, tmp2, (u32)iopMemRead32(sp + n * 4));
remaining_buf -= printed_bytes;
ptmp += printed_bytes;