You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FoFLC uses the standard C file functions, which (at least in Windows) don't
support filenames with special characters. Since I already have FoFLC's file
I/O abstracted into error catching functions, it should be easy for me to add
conditional compiling for the EOF version to use the PACKFILE functions.
Original issue reported on code.google.com by raynebc on 19 Nov 2010 at 3:54
The text was updated successfully, but these errors were encountered:
I don't think this is feasible in Allegro 4. Allegro 5 does seem to have some
file I/O functions that allow seeking forward and backward, so I'm going to
consider that a bare minimum requirement of accomplishing this. So this will
be on hold until EOF is ported to Allegro 5.
Original comment by raynebc on 24 Oct 2011 at 11:29
Using the buffering logic would likely work, I may just need to replace some of
the functions that relied on Allegro. Getting a file's size, for example,
would need to be done as such:
fseek(fp, 0, SEEK_END);
size = ftell(fp);
fseek(fp, 0, SEEK_SET);
That would require the file handle to be open in binary mode though.
Original comment by raynebc on 26 Jul 2012 at 7:37
Original issue reported on code.google.com by
raynebc
on 19 Nov 2010 at 3:54The text was updated successfully, but these errors were encountered: