mcpx/dsp: Fix dprintf use

This commit is contained in:
Matt Borgerson 2025-02-17 01:49:28 -07:00
parent cb60168d59
commit ebc75d66e0
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ void dsp_bootstrap(DSPState* dsp)
(uint8_t*)dsp->core.pram, 0, 0x800*4, false);
for (int i = 0; i < 0x800; i++) {
if (dsp->core.pram[i] & 0xff000000) {
DPRINTF(stderr, "Bootstrap %04x: %08x\n", i, dsp->core.pram[i]);
DPRINTF("Bootstrap %04x: %08x\n", i, dsp->core.pram[i]);
dsp->core.pram[i] &= 0x00ffffff;
}
}