Remove forgotten debug messages

This commit is contained in:
Learath 2020-06-16 19:06:38 +03:00
parent effa964f08
commit d794520748
2 changed files with 0 additions and 5 deletions

View file

@ -629,18 +629,14 @@ void *CSnapshotBuilder::NewItem(int Type, int ID, int Size)
if(m_Sixup) if(m_Sixup)
{ {
//dbg_msg("snap", "intype=%d", Type);
if(Type >= 0) if(Type >= 0)
Type = Obj_SixToSeven(Type); Type = Obj_SixToSeven(Type);
else else
Type *= -1; Type *= -1;
//dbg_msg("snap", "outtype=%d", Type);
if(Type < 0) return pObj; if(Type < 0) return pObj;
} }
//dbg_msg("snap", "adding type='%d' id='%d' size='%d'", Type, ID, Size);
mem_zero(pObj, sizeof(CSnapshotItem) + Size); mem_zero(pObj, sizeof(CSnapshotItem) + Size);
pObj->m_TypeAndID = (Type<<16)|ID; pObj->m_TypeAndID = (Type<<16)|ID;
m_aOffsets[m_NumItems] = m_DataSize; m_aOffsets[m_NumItems] = m_DataSize;

View file

@ -75,7 +75,6 @@ void CTeeInfo::ToSixup()
if(m_UseCustomColor) if(m_UseCustomColor)
{ {
int ColorBody = ColorHSLA(m_ColorBody).Lighten().Pack7(); int ColorBody = ColorHSLA(m_ColorBody).Lighten().Pack7();
dbg_msg("color", "o=%d n=%d", m_ColorBody, ColorBody);
int ColorFeet = ColorHSLA(m_ColorFeet).Lighten().Pack7(); int ColorFeet = ColorHSLA(m_ColorFeet).Lighten().Pack7();
m_aUseCustomColors[0] = true; m_aUseCustomColors[0] = true;
m_aUseCustomColors[1] = true; m_aUseCustomColors[1] = true;