sm64pc/lib/src/osPiGetCmdQueue.c

11 lines
189 B
C
Raw Permalink Normal View History

2019-08-25 04:46:40 +00:00
#include "libultra_internal.h"
extern OSMgrArgs piMgrArgs;
OSMesgQueue *osPiGetCmdQueue(void) {
2019-09-01 19:50:50 +00:00
if (!piMgrArgs.initialized) {
2019-08-25 04:46:40 +00:00
return NULL;
2019-09-01 19:50:50 +00:00
}
2019-08-25 04:46:40 +00:00
return piMgrArgs.unk08;
}