mux: optimize many accesses to O(log(n)) vs Nintendo's O(log(n)^2)

This commit is contained in:
Michael Scire 2021-02-09 07:51:02 -08:00 committed by SciresM
parent 4cb6c63516
commit 00ab210e66
3 changed files with 10 additions and 12 deletions

View file

@ -31,7 +31,7 @@ namespace ams::htc::server::driver {
}
void HtclowDriver::WaitTask(u32 task_id) {
os::WaitEvent(m_manager->GeTaskEvent(task_id));
os::WaitEvent(m_manager->GetTaskEvent(task_id));
}
void HtclowDriver::SetDisconnectionEmulationEnabled(bool en) {