std::stringstream ==> std::ostringstream

This commit is contained in:
Nathan Woods 2016-11-20 18:25:24 -05:00
parent dca6901d80
commit 3bf06f6dea

View File

@ -2722,7 +2722,7 @@ void adsp21062_device::sharcop_idle()
void adsp21062_device::sharcop_unimplemented()
{
extern CPU_DISASSEMBLE(sharc);
std::stringstream dasm;
std::ostringstream dasm;
CPU_DISASSEMBLE_NAME(sharc)(nullptr, dasm, m_core->pc, nullptr, nullptr, 0);
osd_printf_debug("SHARC: %08X: %s\n", m_core->pc, dasm.str().c_str());
fatalerror("SHARC: Unimplemented opcode %04X%08X at %08X\n", (uint16_t)(m_core->opcode >> 32), (uint32_t)(m_core->opcode), m_core->pc);