fix: make fisherman rumble text work (#2279)

we weren't correctly setting the pakType in padMgr because
the depreciated `gRumbleEnabled` cvar was being checked
This commit is contained in:
briaguya 2022-12-26 06:37:40 -05:00 committed by GitHub
commit f42f86e3ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View file

@ -331,7 +331,7 @@ void PadMgr_HandleRetraceMsg(PadMgr* padMgr) {
osContGetReadData(padMgr->pads);
for (i = 0; i < __osMaxControllers; i++) {
padMgr->padStatus[i].status = CVar_GetS32("gRumbleEnabled", 0) && Controller_ShouldRumble(i);
padMgr->padStatus[i].status = Controller_ShouldRumble(i);
}
if (padMgr->preNMIShutdown) {