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 3c1316c04c
commit 61dfa1741e

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