mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-04-23 13:04:50 +00:00
operator precedence
This commit is contained in:
parent
385d92fecb
commit
6dbe3cf4f1
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ void WaitableManager::process_internal(bool break_on_timeout) {
|
|||
so we could at least remove them if any exists */
|
||||
|
||||
for(auto it = waitables.begin(); it != waitables.end(); it++) {
|
||||
if(*it->get_handle() == 0xFFFF8000 || *it->get_handle() == 0xFFFF8001) {
|
||||
if((*it)->get_handle() == 0xFFFF8000 || (*it)->get_handle() == 0xFFFF8001) {
|
||||
waitables.erase(it);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue