summaryrefslogtreecommitdiffhomepage
path: root/Stars45/KeyMap.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-02-07 00:36:48 +0100
committerAki <please@ignore.pl>2022-02-07 00:36:48 +0100
commit865eaca27d5ea0eb7f9ad93ad3d169d192080386 (patch)
tree447fab11ef4e9f5ac5ed81624d4ec5d0bb0ec94b /Stars45/KeyMap.cpp
parentac10eabede2533de74c0dd6714b6cd5d02f6b914 (diff)
downloadstarshatter-865eaca27d5ea0eb7f9ad93ad3d169d192080386.zip
starshatter-865eaca27d5ea0eb7f9ad93ad3d169d192080386.tar.gz
starshatter-865eaca27d5ea0eb7f9ad93ad3d169d192080386.tar.bz2
Changed all file opening modes to be binary to have consistent newlines
Diffstat (limited to 'Stars45/KeyMap.cpp')
-rw-r--r--Stars45/KeyMap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Stars45/KeyMap.cpp b/Stars45/KeyMap.cpp
index c2e7cc1..1c21c15 100644
--- a/Stars45/KeyMap.cpp
+++ b/Stars45/KeyMap.cpp
@@ -600,7 +600,7 @@ int
KeyMap::LoadKeyMap(const char* filename, int max_keys)
{
FILE* f;
- fopen_s(&f, filename, "r");
+ fopen_s(&f, filename, "rb");
if (!f) return nkeys;
@@ -661,7 +661,7 @@ int
KeyMap::SaveKeyMap(const char* filename, int max_keys)
{
FILE* f;
- fopen_s(&f, filename, "w");
+ fopen_s(&f, filename, "wb");
if (!f) return 0;
for (int i = 0; i < nkeys; i++) {