From: Sfan5 <sfan5@live.de>
Date: Sat, 4 May 2013 05:31:22 +0000 (+0200)
Subject: Fix favorite Server List on Windows
X-Git-Tag: 0.4.7~29^2~22
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b88aa81da7031ddb228e8901071b5adf2980c7ed;p=oweals%2Fminetest.git

Fix favorite Server List on Windows
---

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<ServerListSpec> 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;