mirror of
https://github.com/zeldaret/oot
synced 2026-07-08 22:35:00 -04:00
f9d96d9f73
* Less warnings in boot & code segments * few more warnings gone * Ran formatter * z_view warning gone * -> 1 * f31 -> 31 * Remove function casts * Few more small improvements * Separate declaration and assignment in func_80091738 and Item_Give Co-authored-by: Thar0 <maximilianc64@gmail.com>
16 lines
317 B
C
16 lines
317 B
C
#include "global.h"
|
|
|
|
void __osDequeueThread(OSThread** queue, OSThread* thread) {
|
|
register OSThread** a2 = queue;
|
|
register OSThread* a3 = *a2;
|
|
|
|
while (a3 != NULL) {
|
|
if (a3 == thread) {
|
|
*a2 = thread->next;
|
|
return;
|
|
}
|
|
a2 = &a3->next;
|
|
a3 = *a2;
|
|
}
|
|
}
|