mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-30 14:35:17 -04:00
mux: optimize many accesses to O(log(n)) vs Nintendo's O(log(n)^2)
This commit is contained in:
parent
4cb6c63516
commit
00ab210e66
3 changed files with 10 additions and 12 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue