From ec749a67a8dac87dc01421fc74fa9ee8ec6a6164 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 29 Mar 2008 10:36:54 +0000 Subject: read/write files in binary mode --- src/filesystem/diskfile.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/filesystem') diff --git a/src/filesystem/diskfile.cc b/src/filesystem/diskfile.cc index 11070f2..a01a327 100644 --- a/src/filesystem/diskfile.cc +++ b/src/filesystem/diskfile.cc @@ -36,7 +36,7 @@ bool DiskFile::open(const char *filename) file_path.append(moddir); fn = file_path; fn.append(filename); - diskfile_handle = fopen(fn.c_str(), "r"); + diskfile_handle = fopen(fn.c_str(), "rb"); if (diskfile_handle) return true; @@ -45,7 +45,7 @@ bool DiskFile::open(const char *filename) file_path.append(moddir); fn = file_path; fn.append(filename); - diskfile_handle = fopen(fn.c_str(), "r"); + diskfile_handle = fopen(fn.c_str(), "rb"); if (diskfile_handle) return true; } @@ -54,7 +54,7 @@ bool DiskFile::open(const char *filename) file_path.append(basedir); fn = file_path; fn.append(filename); - diskfile_handle = fopen(fn.c_str(), "r"); + diskfile_handle = fopen(fn.c_str(), "rb"); if (diskfile_handle) return true; @@ -63,7 +63,7 @@ bool DiskFile::open(const char *filename) file_path.append(basedir); fn = file_path; fn.append(filename); - diskfile_handle = fopen(fn.c_str(), "r"); + diskfile_handle = fopen(fn.c_str(), "rb"); if (diskfile_handle) return true; -- cgit v1.2.3