LoadText(): Added comment
This commit is contained in:
parent
89ecad1e29
commit
245ba2a152
1 changed files with 3 additions and 0 deletions
|
@ -2996,6 +2996,9 @@ char *LoadText(const char *fileName)
|
|||
|
||||
if (textFile != NULL)
|
||||
{
|
||||
// WARNING: When reading a file as 'text' file,
|
||||
// text mode causes carriage return-linefeed translation...
|
||||
// ...but using fseek() should return correct byte-offset
|
||||
fseek(textFile, 0, SEEK_END);
|
||||
int size = ftell(textFile);
|
||||
fseek(textFile, 0, SEEK_SET);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue