1
0
forked from 0ad/0ad

Adds missing libs, fixes some svn properties and a build-problem on Windows.

In 1b3261b8f4 empty text files were committed instead of the libs.
The text files had svn:eol-style properties set and the mime-type was
text.
This removes the eol-style properties, changes the mime type and addes
the content of the files.

This was SVN commit r14959.
This commit is contained in:
Yves 2014-04-20 23:47:52 +00:00
parent 5aab36670c
commit 510ad15e6c

View File

@ -61,7 +61,7 @@ CStrW UnescapeString(CStrW originalString)
return originalString;
// clone the string
CStrW newString = CStrW();
for (ulong i; i < originalString.length(); ++i)
for (size_t i=0; i < originalString.length(); ++i)
{
if (originalString[i] == '&' && originalString[i+1] == '#')
{