Remove leftover debug code.
This commit is contained in:
parent
9164730b07
commit
dac3d1c988
@ -458,12 +458,11 @@ void UTIL_DrawSendTable(FILE *fp, SendTable *pTable, int level = 1)
|
|||||||
pProp = pTable->GetProp(i);
|
pProp = pTable->GetProp(i);
|
||||||
if (pProp->GetDataTable())
|
if (pProp->GetDataTable())
|
||||||
{
|
{
|
||||||
fprintf(fp, "%*sTable: %s (offset %d) (type %s) (unk %d 0x%p)\n",
|
fprintf(fp, "%*sTable: %s (offset %d) (type %s)\n",
|
||||||
level, "",
|
level, "",
|
||||||
pProp->GetName(),
|
pProp->GetName(),
|
||||||
pProp->GetOffset(),
|
pProp->GetOffset(),
|
||||||
pProp->GetDataTable()->GetName(),
|
pProp->GetDataTable()->GetName());
|
||||||
pProp->m_Unknown1, pProp->m_Unknown1);
|
|
||||||
|
|
||||||
UTIL_DrawSendTable(fp, pProp->GetDataTable(), level + 1);
|
UTIL_DrawSendTable(fp, pProp->GetDataTable(), level + 1);
|
||||||
}
|
}
|
||||||
@ -474,26 +473,24 @@ void UTIL_DrawSendTable(FILE *fp, SendTable *pTable, int level = 1)
|
|||||||
if (type != NULL)
|
if (type != NULL)
|
||||||
{
|
{
|
||||||
fprintf(fp,
|
fprintf(fp,
|
||||||
"%*sMember: %s (offset %d) (type %s) (bits %d) (%s) (unk %d 0x%p)\n",
|
"%*sMember: %s (offset %d) (type %s) (bits %d) (%s)\n",
|
||||||
level, "",
|
level, "",
|
||||||
pProp->GetName(),
|
pProp->GetName(),
|
||||||
pProp->GetOffset(),
|
pProp->GetOffset(),
|
||||||
type,
|
type,
|
||||||
pProp->m_nBits,
|
pProp->m_nBits,
|
||||||
UTIL_SendFlagsToString(pProp->GetFlags(), pProp->GetType()),
|
UTIL_SendFlagsToString(pProp->GetFlags(), pProp->GetType()));
|
||||||
pProp->m_Unknown1, pProp->m_Unknown1);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fprintf(fp,
|
fprintf(fp,
|
||||||
"%*sMember: %s (offset %d) (type %d) (bits %d) (%s) (unk %d 0x%p)\n",
|
"%*sMember: %s (offset %d) (type %d) (bits %d) (%s)\n",
|
||||||
level, "",
|
level, "",
|
||||||
pProp->GetName(),
|
pProp->GetName(),
|
||||||
pProp->GetOffset(),
|
pProp->GetOffset(),
|
||||||
pProp->GetType(),
|
pProp->GetType(),
|
||||||
pProp->m_nBits,
|
pProp->m_nBits,
|
||||||
UTIL_SendFlagsToString(pProp->GetFlags(), pProp->GetType()),
|
UTIL_SendFlagsToString(pProp->GetFlags(), pProp->GetType()));
|
||||||
pProp->m_Unknown1, pProp->m_Unknown1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user