mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 16:15:07 -04:00
39cc86c260
subrepo: subdir: "soh" merged: "ba904bbd0" upstream: origin: "https://github.com/HarbourMasters/soh.git" branch: "master" commit: "ba904bbd0" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
35 lines
781 B
C
35 lines
781 B
C
#include "global.h"
|
|
|
|
s32 PadSetup_Init(OSMesgQueue* mq, u8* outMask, OSContStatus* status) {
|
|
s32 ret;
|
|
s32 i;
|
|
|
|
*outMask = 0xFF;
|
|
ret = osContInit(mq, outMask, status);
|
|
if (ret != 0) {
|
|
return ret;
|
|
}
|
|
if (*outMask == 0xFF) {
|
|
if (osContStartQuery(mq) != 0) {
|
|
return 1;
|
|
}
|
|
|
|
osRecvMesg(mq, NULL, OS_MESG_BLOCK);
|
|
osContGetQuery(status);
|
|
|
|
*outMask = 0;
|
|
for (i = 0; i < 4; i++) {
|
|
switch (status[i].err_no) {
|
|
case 0:
|
|
if (status[i].type == CONT_TYPE_NORMAL) {
|
|
*outMask |= 1 << i;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|