When I use the WriteInt function it actually writes something extraneous at the beginning of each data portion I write.
So if I do this:
Code: ags
And then load the output file in Hexedit, I see this:
Code: ags
How can I get rid of it? Why is it there?
So if I do this:
File *output = File.Open("test.txt", eFileWrite);
output.WriteInt(5);
output.Close();
And then load the output file in Hexedit, I see this:
49 05 00 00 00 I . . . .
How can I get rid of it? Why is it there?