mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 13:01:47 +00:00
- removed 64 bit warnings.
This commit is contained in:
parent
8535a973cf
commit
06dc96b062
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue