void FileObject::writeLine(const U8 *line)
{
stream.write(dStrlen((const char *) line), line);
stream.write(2, "\r\n");
}
the writeLine function always ends with "\r\n"
so the reason its appearing on the same line is probably because you wrote in the initial lines, if you are going to do so make sure that after the last entery you leave a line break