From b88aa81da7031ddb228e8901071b5adf2980c7ed Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Sat, 4 May 2013 07:31:22 +0200 Subject: [PATCH] Fix favorite Server List on Windows --- src/serverlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serverlist.cpp b/src/serverlist.cpp index 7053436d0..ea5a616c2 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;