Skip to content

Commit

Permalink
minor build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Jul 30, 2019
1 parent fdc67c3 commit f96d7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file/SDL_rwops.c
Expand Up @@ -585,7 +585,7 @@ SDL_RWFromFile(const char *file, const char *mode)
if (fp == NULL) {
SDL_SetError("Couldn't open %s", file);
} else {
rwops = SDL_RWFromFP(fp, 1);
rwops = SDL_RWFromFP(fp, SDL_TRUE);
}
}
#else
Expand Down

0 comments on commit f96d7cc

Please sign in to comment.