Use fopen with binary mode everywhere (for Windows compat)

This commit is contained in:
Jonas Kulla 2014-11-17 07:18:39 +01:00
parent f7a3e3c5d2
commit 5c3f4b905a
4 changed files with 6 additions and 6 deletions

View file

@ -66,7 +66,7 @@ findNextPow2(int start)
inline bool readFile(const char *path,
std::string &out)
{
FILE *f = fopen(path, "r");
FILE *f = fopen(path, "rb");
if (!f)
return false;