mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2026-05-11 03:12:15 +00:00
bypass window’s min macro
This commit is contained in:
parent
f9b3c21ffd
commit
e67fe70f99
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ extern "C" void osContGetQuery_recomp(uint8_t * rdram, recomp_context * ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" void osContSetCh_recomp(uint8_t* rdram, recomp_context* ctx) {
|
extern "C" void osContSetCh_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||||||
max_controllers = std::min(_arg<0, u8>(rdram, ctx), u8(4));
|
max_controllers = (std::min)(_arg<0, u8>(rdram, ctx), u8(4));
|
||||||
_return<s32>(ctx, 0);
|
_return<s32>(ctx, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue