fix spaces

This commit is contained in:
fgsfds 2020-08-30 15:39:41 +03:00
parent 19e0e58b7e
commit 8685add4c3
1 changed files with 2 additions and 4 deletions

View File

@ -33,16 +33,14 @@ s32 osContInit(UNUSED OSMesgQueue *mq, u8 *controllerBits, UNUSED OSContStatus *
s32 osMotorStart(UNUSED void *pfs) {
// Since rumble stops by osMotorStop, its duration is not nessecary.
// Set it to 5 seconds and hope osMotorStop() is called in time.
if (configRumbleStrength>0){
if (configRumbleStrength)
controller_rumble_play(configRumbleStrength / 100.0f, 5.0f);
}
return 0;
}
s32 osMotorStop(UNUSED void *pfs) {
if (configRumbleStrength>0){
if (configRumbleStrength)
controller_rumble_stop();
}
return 0;
}