So, I put out this game called Kambou v0.4, right? And I've got a bit of a problem. People are reporting a bug that I can't reproduce no matter what I do. It's in the Info section of the game, and what's happening is that people are getting a sort of "run on text" on the last line, as though the file point is simply jumping to another file after it's done with the first one.
Screenshots:
http://kambou.ikimashoz.com/kambou1.png
http://kambou.ikimashoz.com/kambou2.png
http://kambou.ikimashoz.com/kambou3.png
http://kambou.ikimashoz.com/kambou4.png
Here's my code:
int file = fileopen(infos[num].content, FILE_READ);
while(!fileeof(file)) { printstring(x_coord, y_coord, screen, 0, filereadln(file)); y_coord += 12; }
fileclose(file);
Help??