mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-06-02 18:19:18 -04:00
5c23113592
* libultra from sm64 integrated; 3 libultra functions matched * All of libultra done! authored-by: farisawan-2000 <farisawan.2000@gmail.com>
11 lines
201 B
C
11 lines
201 B
C
#include "libultra_internal.h"
|
|
|
|
extern OSMgrArgs __osPiDevMgr;
|
|
|
|
OSMesgQueue *osPiGetCmdQueue(void) {
|
|
if (!__osPiDevMgr.initialized) {
|
|
return NULL;
|
|
}
|
|
return __osPiDevMgr.cmdQueue;
|
|
}
|