mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-31 09:22:27 -04:00
5c23113592
* libultra from sm64 integrated; 3 libultra functions matched * All of libultra done! authored-by: farisawan-2000 <farisawan.2000@gmail.com>
9 lines
172 B
C
9 lines
172 B
C
#include "libultra_internal.h"
|
|
|
|
OSPri osGetThreadPri(OSThread *thread) {
|
|
if (thread == NULL) {
|
|
thread = __osRunningThread;
|
|
}
|
|
return thread->priority;
|
|
}
|