sm64pc/lib/src/osPiGetCmdQueue.c

11 lines
189 B
C
Raw Normal View History

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