mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 06:28:19 +00:00
Remove forgotten debug messages
This commit is contained in:
parent
effa964f08
commit
d794520748
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue