diff options
| author | Matthew Parlane <parlane@gmail.com> | 2017-01-21 12:33:06 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-21 12:33:06 +1300 |
| commit | 83dc03416e955e7ee81e95e0f5fe63dffb983fe8 (patch) | |
| tree | f656d9ba035f48e3f1ebffb51b0f825ecaf7c5b5 /Source/Core/Common/Logging | |
| parent | 2f9bf297f1a86956c8433afdd3de2673e40c09fa (diff) | |
| parent | 954c41d6e981b22d1ce99edd2ef8ae4582177232 (diff) | |
Merge pull request #4690 from leoetlino/common-usb
IOS: Move out common USB structures
Diffstat (limited to 'Source/Core/Common/Logging')
| -rw-r--r-- | Source/Core/Common/Logging/Log.h | 1 | ||||
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h index b225fe8dbd..ce46bcb8e2 100644 --- a/Source/Core/Common/Logging/Log.h +++ b/Source/Core/Common/Logging/Log.h @@ -36,6 +36,7 @@ enum LOG_TYPE IOS_SD, IOS_SSL, IOS_STM, + IOS_USB, IOS_WC24, IOS_WIIMOTE, MASTER_LOG, diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index 1d3281ff63..4cb786095b 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -70,6 +70,7 @@ LogManager::LogManager() m_Log[LogTypes::IOS_SSL] = new LogContainer("IOS_SSL", "IOS - SSL"); m_Log[LogTypes::IOS_STM] = new LogContainer("IOS_STM", "IOS - State Transition Manager"); m_Log[LogTypes::IOS_NET] = new LogContainer("IOS_NET", "IOS - Network"); + m_Log[LogTypes::IOS_USB] = new LogContainer("IOS_USB", "IOS - USB"); m_Log[LogTypes::IOS_WC24] = new LogContainer("IOS_WC24", "IOS - WiiConnect24"); m_Log[LogTypes::IOS_WIIMOTE] = new LogContainer("IOS_WIIMOTE", "IOS - Wii Remote"); m_Log[LogTypes::MASTER_LOG] = new LogContainer("*", "Master Log"); |
