tx0.cpp: Append to output files for punched tape and typewriter images

This commit is contained in:
AJR 2023-05-28 23:11:39 -04:00
parent 7ae8aed8ab
commit baba091b74

View File

@ -636,6 +636,8 @@ std::pair<std::error_condition, std::string> tx0_punchtape_image_device::call_lo
if (m_tx0)
m_tx0->m_tape_puncher.fd = this;
fseek(0, SEEK_END);
return std::make_pair(std::error_condition(), std::string());
}
@ -719,6 +721,8 @@ std::pair<std::error_condition, std::string> tx0_printer_image_device::call_load
if (m_tx0)
m_tx0->m_typewriter.fd = this;
fseek(0, SEEK_END);
return std::make_pair(std::error_condition(), std::string());
}