mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-07-05 09:02:15 +02:00
operator precedence
This commit is contained in:
parent
385d92fecb
commit
6dbe3cf4f1
@ -64,7 +64,7 @@ void WaitableManager::process_internal(bool break_on_timeout) {
|
|||||||
so we could at least remove them if any exists */
|
so we could at least remove them if any exists */
|
||||||
|
|
||||||
for(auto it = waitables.begin(); it != waitables.end(); it++) {
|
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);
|
waitables.erase(it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user