Stratosphère: Simplify some for loops (#76)

Simplifies some loops by removing the need to manually calculate or
re-specify the array size. Eliminates any chance of using the
wrong size and less typing.
This commit is contained in:
Léo Lam 2018-05-04 01:24:34 +02:00 committed by SciresM
parent 7ab9f507cb
commit 999498c0a0
3 changed files with 12 additions and 12 deletions

View file

@ -79,4 +79,4 @@ LaunchQueue::LaunchItem *LaunchQueue::get_item(u64 tid) {
return NULL;
}
return &g_launch_queue[idx];
}
}