mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +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 += ".txt";
|
||||
FILE *f = nlfopen(fmtName, "wt");
|
||||
FILE *f = nlfopen(fmtName, "wb");
|
||||
if (f != NULL)
|
||||
{
|
||||
for (sint i = 0; i < mapSize; ++i)
|
||||
|
@ -511,7 +511,7 @@ int main(int argc, char **argv)
|
|||
// Write subset UV text file
|
||||
fmtName = fmtName.substr(0, fmtName.rfind('.'));
|
||||
fmtName += ".txt";
|
||||
FILE *f = nlfopen(fmtName, "wt");
|
||||
FILE *f = nlfopen(fmtName, "wb");
|
||||
|
||||
if (f == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue