mirror of
https://github.com/zeldaret/oot
synced 2026-05-25 23:35:18 -04:00
10 lines
155 B
C
10 lines
155 B
C
#include <global.h>
|
|
|
|
OSMesgQueue* osPiGetCmdQueue() {
|
|
if (!__osPiDevMgr.initialized) {
|
|
return NULL;
|
|
}
|
|
|
|
return __osPiDevMgr.cmdQueue;
|
|
}
|