mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
Merge remote-tracking branch 'origin/master' into nightly
This commit is contained in:
commit
8419991c02
1 changed files with 4 additions and 2 deletions
|
@ -30,11 +30,13 @@ s32 osContInit(UNUSED OSMesgQueue *mq, u8 *controllerBits, UNUSED OSContStatus *
|
||||||
s32 osMotorStart(UNUSED void *pfs) {
|
s32 osMotorStart(UNUSED void *pfs) {
|
||||||
// Since rumble stops by osMotorStop, its duration is not nessecary.
|
// Since rumble stops by osMotorStop, its duration is not nessecary.
|
||||||
// Set it to 5 seconds and hope osMotorStop() is called in time.
|
// Set it to 5 seconds and hope osMotorStop() is called in time.
|
||||||
|
if (configRumbleStrength)
|
||||||
controller_rumble_play(configRumbleStrength / 100.0f, 5.0f);
|
controller_rumble_play(configRumbleStrength / 100.0f, 5.0f);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 osMotorStop(UNUSED void *pfs) {
|
s32 osMotorStop(UNUSED void *pfs) {
|
||||||
|
if (configRumbleStrength)
|
||||||
controller_rumble_stop();
|
controller_rumble_stop();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue