mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
fopen does not take a "t" mode
"t" is a nonportable way of opening files in text mode. Windows opens files in text mode by default anyway, and in UNIX there is no text mode. (Passing "t" to fopen is undefined in standard C.)
This commit is contained in:
@@ -52,7 +52,7 @@ filesize(char *s)
|
||||
FILE *f;
|
||||
ULONG size = 0;
|
||||
|
||||
if ((f = fopen(s, "rt")) != NULL) {
|
||||
if ((f = fopen(s, "r")) != NULL) {
|
||||
fseek(f, 0, SEEK_END);
|
||||
size = ftell(f);
|
||||
fclose(f);
|
||||
@@ -247,7 +247,7 @@ fstk_RunInclude(char *tzFileName)
|
||||
fstk_FindFile(tzFileName);
|
||||
//printf("INCLUDING: %s\n", tzFileName);
|
||||
|
||||
if ((f = fopen(tzFileName, "rt")) != NULL) {
|
||||
if ((f = fopen(tzFileName, "r")) != NULL) {
|
||||
pushcontext();
|
||||
nLineNo = 1;
|
||||
nCurrentStatus = STAT_isInclude;
|
||||
@@ -383,7 +383,7 @@ fstk_Init(char *s)
|
||||
fstk_FindFile(tzFileName);
|
||||
|
||||
pFileStack = NULL;
|
||||
if ((pCurrentFile = fopen(tzFileName, "rt")) != NULL) {
|
||||
if ((pCurrentFile = fopen(tzFileName, "r")) != NULL) {
|
||||
nMacroCount = 0;
|
||||
nCurrentStatus = STAT_isInclude;
|
||||
strcpy(tzCurrentFileName, tzFileName);
|
||||
|
||||
Reference in New Issue
Block a user