mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-12 18:29:02 +00:00
Changed: Write UNIX EOL in UV files
This commit is contained in:
parent
8fe387eae3
commit
18e35134a0
1 changed files with 2 additions and 2 deletions
|
@ -477,7 +477,7 @@ int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
fmtName = fmtName.substr(0, fmtName.rfind('.'));
|
fmtName = fmtName.substr(0, fmtName.rfind('.'));
|
||||||
fmtName += ".txt";
|
fmtName += ".txt";
|
||||||
FILE *f = nlfopen(fmtName, "wt");
|
FILE *f = nlfopen(fmtName, "wb");
|
||||||
if (f != NULL)
|
if (f != NULL)
|
||||||
{
|
{
|
||||||
for (sint i = 0; i < mapSize; ++i)
|
for (sint i = 0; i < mapSize; ++i)
|
||||||
|
@ -511,7 +511,7 @@ int main(int argc, char **argv)
|
||||||
// Write subset UV text file
|
// Write subset UV text file
|
||||||
fmtName = fmtName.substr(0, fmtName.rfind('.'));
|
fmtName = fmtName.substr(0, fmtName.rfind('.'));
|
||||||
fmtName += ".txt";
|
fmtName += ".txt";
|
||||||
FILE *f = nlfopen(fmtName, "wt");
|
FILE *f = nlfopen(fmtName, "wb");
|
||||||
|
|
||||||
if (f == NULL)
|
if (f == NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue