- removed 64 bit warnings.

This commit is contained in:
Christoph Oelckers 2016-04-08 14:21:20 +02:00
parent 8535a973cf
commit 06dc96b062
1 changed files with 2 additions and 2 deletions

View File

@ -859,8 +859,8 @@ void FArchive::WriteString(const FString &str)
{
// The count includes the '\0' terminator, but we don't
// actually write it out.
WriteCount(str.Len() + 1);
Write(str, str.Len());
WriteCount(DWORD(str.Len() + 1));
Write(str, DWORD(str.Len()));
}
FArchive &FArchive::operator<< (char *&str)