mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 15:55:59 +00:00
f9d96d9f73
* Less warnings in boot & code segments * few more warnings gone * Ran formatter * z_view warning gone * -> 1 * f31 -> 31 * Remove function casts * Few more small improvements * Separate declaration and assignment in func_80091738 and Item_Give Co-authored-by: Thar0 <maximilianc64@gmail.com>
34 lines
780 B
C
34 lines
780 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].errno) {
|
|
case 0:
|
|
if (status[i].type == CONT_TYPE_NORMAL) {
|
|
*outMask |= 1 << i;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|