reverted a minor, unnecessary change in SDL_rwops.c that was done with regards to WinRT compilation
This commit is contained in:
parent
54b4201aa0
commit
8eb16c7d58
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ SDL_RWFromFile(const char *file, const char *mode)
|
|||
if (fp == NULL) {
|
||||
SDL_SetError("Couldn't open %s", file);
|
||||
} else {
|
||||
rwops = SDL_RWFromFP(fp, SDL_TRUE);
|
||||
rwops = SDL_RWFromFP(fp, 1);
|
||||
}
|
||||
}
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue