This commit is contained in:
angie 2024-06-05 17:09:34 -04:00
parent 5814517417
commit ee621b7ac3

View file

@ -78,7 +78,7 @@ extern "C" s32 osContStartReadData(RDRAM_ARG PTR(OSMesgQueue) mq) {
}
extern "C" s32 osContSetCh(RDRAM_ARG u8 ch) {
max_controllers = (std::min)(ch, u8(MAXCONTROLLERS));
max_controllers = std::min(ch, u8(MAXCONTROLLERS));
return 0;
}