Fix for end of memory block in CheckIntegrity()

This commit is contained in:
Echelon9 2012-10-08 00:21:20 +11:00
parent 0ad1cf1d88
commit b0c60ebb2a
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static bool CheckIntegrity(CXBX_MEMORY_BLOCK *pBlock)
if(*(uint32*)GetMemEnd(pBlock) != MEMORY_GUARD)
{
printf(" Memory block corrupted at end, overwrite: 0x.04X\n",
printf(" Memory block corrupted at end, overwrite: 0x%.04X\n",
*(uint32*)GetMemEnd(pBlock));
Integrity = false;
}