reverted a minor, unnecessary change in SDL_rwops.c that was done with regards to WinRT compilation

This commit is contained in:
David Ludwig 2012-10-17 21:50:49 -04:00
parent 54b4201aa0
commit 8eb16c7d58

View file

@ -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