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
parent 85bccab1bb
commit f42f86e3ef
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) {