mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #851 from lioncash/logg
Common: Kill off duplicate log warning definitions
This commit is contained in:
@ -314,23 +314,23 @@ void CLogWindow::UpdateLog()
|
||||
{
|
||||
switch (msgQueue.front().first)
|
||||
{
|
||||
case ERROR_LEVEL:
|
||||
case LogTypes::LOG_LEVELS::LERROR:
|
||||
m_Log->SetDefaultStyle(wxTextAttr(*wxRED));
|
||||
break;
|
||||
|
||||
case WARNING_LEVEL:
|
||||
case LogTypes::LOG_LEVELS::LWARNING:
|
||||
m_Log->SetDefaultStyle(wxTextAttr(*wxYELLOW));
|
||||
break;
|
||||
|
||||
case NOTICE_LEVEL:
|
||||
case LogTypes::LOG_LEVELS::LNOTICE:
|
||||
m_Log->SetDefaultStyle(wxTextAttr(*wxGREEN));
|
||||
break;
|
||||
|
||||
case INFO_LEVEL:
|
||||
case LogTypes::LOG_LEVELS::LINFO:
|
||||
m_Log->SetDefaultStyle(wxTextAttr(*wxCYAN));
|
||||
break;
|
||||
|
||||
case DEBUG_LEVEL:
|
||||
case LogTypes::LOG_LEVELS::LDEBUG:
|
||||
m_Log->SetDefaultStyle(wxTextAttr(*wxLIGHT_GREY));
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user