Hi,
This is a really basic question but how do i write a new line to a text file so the next write will be on the next line?
I have tried a couple of different things but none of them seem to work.
FS_WriteFile (&file_info, (u8 *)"test", &write_length, 4);
FS_WriteFile (&file_info, "\n", &write_length, 2);
I also tried writing the ansi number for a Carriage return 0xD but that did not seem to work either?