mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +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
|
// The count includes the '\0' terminator, but we don't
|
||||||
// actually write it out.
|
// actually write it out.
|
||||||
WriteCount(str.Len() + 1);
|
WriteCount(DWORD(str.Len() + 1));
|
||||||
Write(str, str.Len());
|
Write(str, DWORD(str.Len()));
|
||||||
}
|
}
|
||||||
|
|
||||||
FArchive &FArchive::operator<< (char *&str)
|
FArchive &FArchive::operator<< (char *&str)
|
||||||
|
|
Loading…
Reference in a new issue