From: Sfan5 Date: Sat, 4 May 2013 05:31:22 +0000 (+0200) Subject: Fix favorite Server List on Windows X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=b88aa81da7031ddb228e8901071b5adf2980c7ed;p=zefram%2Fminetest%2Fminetest_engine.git Fix favorite Server List on Windows --- diff --git a/src/serverlist.cpp b/src/serverlist.cpp index 7053436d..ea5a616c 100644 --- a/src/serverlist.cpp +++ b/src/serverlist.cpp @@ -53,7 +53,7 @@ std::vector getLocal() std::string liststring; if(fs::PathExists(path)) { - std::ifstream istream(path.c_str(), std::ios::binary); + std::ifstream istream(path.c_str()); if(istream.is_open()) { std::ostringstream ostream;