From 865eaca27d5ea0eb7f9ad93ad3d169d192080386 Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 7 Feb 2022 00:36:48 +0100 Subject: Changed all file opening modes to be binary to have consistent newlines --- Stars45/NetLobbyServer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Stars45/NetLobbyServer.cpp') diff --git a/Stars45/NetLobbyServer.cpp b/Stars45/NetLobbyServer.cpp index c3817c8..a0014e4 100644 --- a/Stars45/NetLobbyServer.cpp +++ b/Stars45/NetLobbyServer.cpp @@ -202,7 +202,7 @@ NetLobbyServer::LoadMOTD() motd.destroy(); FILE* f; - fopen_s(&f, "motd.txt", "r"); + fopen_s(&f, "motd.txt", "rb"); if (f) { char line[256]; @@ -595,7 +595,7 @@ void NetLobbyServer::SaveChat() { FILE* f; - fopen_s(&f, "chat.txt", "w"); + fopen_s(&f, "chat.txt", "wb"); if (f) { for (int i = 0; i < chat_log.size(); i++) { NetChatEntry* c = chat_log[i]; @@ -1311,7 +1311,7 @@ NetLobbyServer::DoMissionData(NetPeer* peer, Text msg) Text reply = Serialize(mission, user); SendData(user, NET_LOBBY_MISSION_DATA, reply); - FILE* f = ::fopen("multi_mission_send.def", "w"); + FILE* f = ::fopen("multi_mission_send.def", "wb"); if (f) { ::fwrite(reply.data(), reply.length(), 1, f); ::fclose(f); -- cgit v1.1