11-23-2021, 10:38 AM
nothing changes for me.
here is an excerpt of my change
Does somebody has any idea?
if (pText = (CUIText*)pTmpItem->findUI("text_state"))
{
if( pChannelInfo->iPlayerNum == -1 )
{
pText->SetText(CTString(_S( 372, "Á¡°Ë" )));
pText->setFontColor(0x9400D6FF);
}
else if( pChannelInfo->iPlayerNum >= _cmiComm.cci_iFullUsers )
{
pText->SetText(CTString(_S( 373, "FULL" )));
pText->setFontColor(0xD11184FF);
}
else if( pChannelInfo->iPlayerNum >= _cmiComm.cci_iBusyUsers )
{
pText->SetText(CTString(_S( 374, "È¥Àâ" )));
pText->setFontColor(0xFF9533FF);
}
}
else
{
CTString strTmp;
strTmp.PrintF("%d", pChannelInfo->iPlayerNum);
pText->SetText(strTmp);
pText->setFontColor(0x00ff00FF);
}
}
m_pChannelList->UpdateList();
m_pChannelList->UpdateScroll(nChannelCnt);
2

