mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-17 04:20:44 +00:00
9 lines
155 B
C
9 lines
155 B
C
#include <global.h>
|
|
|
|
OSMesgQueue* osPiGetCmdQueue() {
|
|
if (!__osPiDevMgr.initialized) {
|
|
return NULL;
|
|
}
|
|
|
|
return __osPiDevMgr.cmdQueue;
|
|
}
|