diff options
| author | 2014-09-12 17:06:13 -0700 | |
|---|---|---|
| committer | 2014-10-07 15:09:37 -0700 | |
| commit | e6594f9f53df456db42ab2091a7b1397070ff9c8 (patch) | |
| tree | a1ca13000e379f753a155580560c20e015c2e552 /src/common/log_manager.cpp | |
| parent | Merge pull request #118 from lioncash/chunk-file (diff) | |
| download | yuzu-e6594f9f53df456db42ab2091a7b1397070ff9c8.tar.gz yuzu-e6594f9f53df456db42ab2091a7b1397070ff9c8.tar.xz yuzu-e6594f9f53df456db42ab2091a7b1397070ff9c8.zip | |
Added configuration file system.
Uses QSettings on citra-qt, and inih on citra-cli.
Diffstat (limited to 'src/common/log_manager.cpp')
| -rw-r--r-- | src/common/log_manager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/log_manager.cpp b/src/common/log_manager.cpp index 28b72fa20..4d590d98f 100644 --- a/src/common/log_manager.cpp +++ b/src/common/log_manager.cpp | |||
| @@ -30,6 +30,7 @@ LogManager::LogManager() | |||
| 30 | m_Log[LogTypes::MASTER_LOG] = new LogContainer("*", "Master Log"); | 30 | m_Log[LogTypes::MASTER_LOG] = new LogContainer("*", "Master Log"); |
| 31 | m_Log[LogTypes::BOOT] = new LogContainer("BOOT", "Boot"); | 31 | m_Log[LogTypes::BOOT] = new LogContainer("BOOT", "Boot"); |
| 32 | m_Log[LogTypes::COMMON] = new LogContainer("COMMON", "Common"); | 32 | m_Log[LogTypes::COMMON] = new LogContainer("COMMON", "Common"); |
| 33 | m_Log[LogTypes::CONFIG] = new LogContainer("CONFIG", "Configuration"); | ||
| 33 | m_Log[LogTypes::DISCIO] = new LogContainer("DIO", "Disc IO"); | 34 | m_Log[LogTypes::DISCIO] = new LogContainer("DIO", "Disc IO"); |
| 34 | m_Log[LogTypes::FILEMON] = new LogContainer("FileMon", "File Monitor"); | 35 | m_Log[LogTypes::FILEMON] = new LogContainer("FileMon", "File Monitor"); |
| 35 | m_Log[LogTypes::PAD] = new LogContainer("PAD", "Pad"); | 36 | m_Log[LogTypes::PAD] = new LogContainer("PAD", "Pad"); |