Просмотр исходного кода

Made NEWLINE default to unix newline in tinyxml

Ivan Safrin 13 лет назад
Родитель
Сommit
fecedf6221
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Core/Contents/Source/tinyxml.cpp

+ 1 - 1
Core/Contents/Source/tinyxml.cpp

@@ -34,7 +34,7 @@ distribution.
 // This document has been altered from the original in the following ways:
 // * It opens files through the Polycode OSFile abstraction rather than directly.
 // * It now uses Windows linebreaks consistently regardless of platform.
-#define NEWLINE "\r\n"
+#define NEWLINE "\n"
 
 bool TiXmlBase::condenseWhiteSpace = true;