Fixed VisualStudio .NET warnings in TXP plugin.

This commit is contained in:
Robert Osfield
2002-04-18 10:38:58 +00:00
parent ab64566b61
commit 4b5e4904ac
4 changed files with 20 additions and 20 deletions

View File

@@ -131,7 +131,7 @@ void trpgMemWriteBuffer::Add(int32 val)
void trpgMemWriteBuffer::Add(int64 val)
{
if (ness != cpuNess)
val = trpg_byteswap_long(val);
val = trpg_byteswap_llong(val);
append(sizeof(int64),(const char *)&val);
}