removed printf. The PSX core uses program->write_dword for all writes with a calculated mem_mask and upper data bits leaking register contents. I've left read_byte & write_byte, but they aren't required.

This commit is contained in:
smf- 2011-02-20 11:06:17 +00:00
parent 05e94cf72c
commit 333e7c8d1f

View File

@ -3164,10 +3164,6 @@ WRITE16_HANDLER( spu_w )
spu->installed_dma_hooks = true;
}
if (mem_mask != 0xffff)
{
printf("SPU: ERROR, non-16-bit write %x!\n", mem_mask);
}
spu->write_word(offset*2, data);
}