diff options
| author | 2014-12-09 15:41:17 -0500 | |
|---|---|---|
| committer | 2014-12-09 15:41:17 -0500 | |
| commit | a1f9cde8060b4e047d992896073d10cbdfc7259b (patch) | |
| tree | 739ece853edb8488c7a8802290e2187086a4854e /src/common | |
| parent | Merge pull request #218 from neobrain/pica_debugger (diff) | |
| parent | Remove unused NDMA module (diff) | |
| download | yuzu-a1f9cde8060b4e047d992896073d10cbdfc7259b.tar.gz yuzu-a1f9cde8060b4e047d992896073d10cbdfc7259b.tar.xz yuzu-a1f9cde8060b4e047d992896073d10cbdfc7259b.zip | |
Merge pull request #266 from yuriks/remove-ndma
Remove unused NDMA module.
Diffstat (limited to '')
| -rw-r--r-- | src/common/log.h | 1 | ||||
| -rw-r--r-- | src/common/log_manager.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/common/log.h b/src/common/log.h index ff0295cb0..78f0dae4d 100644 --- a/src/common/log.h +++ b/src/common/log.h | |||
| @@ -65,7 +65,6 @@ enum LOG_TYPE { | |||
| 65 | WII_IPC_HID, | 65 | WII_IPC_HID, |
| 66 | KERNEL, | 66 | KERNEL, |
| 67 | SVC, | 67 | SVC, |
| 68 | NDMA, | ||
| 69 | HLE, | 68 | HLE, |
| 70 | RENDER, | 69 | RENDER, |
| 71 | GPU, | 70 | GPU, |
diff --git a/src/common/log_manager.cpp b/src/common/log_manager.cpp index 39b1924c7..128c15388 100644 --- a/src/common/log_manager.cpp +++ b/src/common/log_manager.cpp | |||
| @@ -68,7 +68,6 @@ LogManager::LogManager() | |||
| 68 | m_Log[LogTypes::RENDER] = new LogContainer("RENDER", "RENDER"); | 68 | m_Log[LogTypes::RENDER] = new LogContainer("RENDER", "RENDER"); |
| 69 | m_Log[LogTypes::GPU] = new LogContainer("GPU", "GPU"); | 69 | m_Log[LogTypes::GPU] = new LogContainer("GPU", "GPU"); |
| 70 | m_Log[LogTypes::SVC] = new LogContainer("SVC", "Supervisor Call HLE"); | 70 | m_Log[LogTypes::SVC] = new LogContainer("SVC", "Supervisor Call HLE"); |
| 71 | m_Log[LogTypes::NDMA] = new LogContainer("NDMA", "NDMA"); | ||
| 72 | m_Log[LogTypes::HLE] = new LogContainer("HLE", "High Level Emulation"); | 71 | m_Log[LogTypes::HLE] = new LogContainer("HLE", "High Level Emulation"); |
| 73 | m_Log[LogTypes::HW] = new LogContainer("HW", "Hardware"); | 72 | m_Log[LogTypes::HW] = new LogContainer("HW", "Hardware"); |
| 74 | m_Log[LogTypes::ACTIONREPLAY] = new LogContainer("ActionReplay", "ActionReplay"); | 73 | m_Log[LogTypes::ACTIONREPLAY] = new LogContainer("ActionReplay", "ActionReplay"); |