Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
reverted a minor, unnecessary change in SDL_rwops.c that was done wit…
Browse files Browse the repository at this point in the history
…h regards to WinRT compilation
  • Loading branch information
DavidLudwig committed Oct 18, 2012
1 parent 90ebbe9 commit ae41aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file/SDL_rwops.c
Expand Up @@ -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
Expand Down

0 comments on commit ae41aee

Please sign in to comment.