file encoding to utf-8

This commit is contained in:
d1str4ught
2025-08-19 00:30:50 +02:00
parent be56f3f31a
commit ea712bec83
241 changed files with 1753 additions and 1753 deletions

View File

@@ -474,7 +474,7 @@ void CPythonChat::AppendChat(int iType, const char * c_szChat)
TChatSet * pChatSet = &(itor->second);
//pChatLine->SetColor(itor->first, GetChatColor(iType));
// Edit Mode 를 억지로 끼워 맞추기 위해 추가
// Edit Mode 를 억지로 끼워 맞추기 위해 추가
if (BOARD_STATE_EDIT == pChatSet->m_iBoardState)
{
ArrangeShowingChat(itor->first);
@@ -512,12 +512,12 @@ DWORD CPythonChat::GetChatColor(int iType)
void CPythonChat::IgnoreCharacter(const char * c_szName)
{
TIgnoreCharacterSet::iterator itor = m_IgnoreCharacterSet.find(c_szName);
// NOTE : 이미 차단 중이라면..
// NOTE : 이미 차단 중이라면..
if (m_IgnoreCharacterSet.end() != itor)
{
m_IgnoreCharacterSet.erase(itor);
}
// NOTE : 차단이 되지 않은 캐릭터라면..
// NOTE : 차단이 되지 않은 캐릭터라면..
else
{
m_IgnoreCharacterSet.insert(c_szName);