summaryrefslogtreecommitdiff
path: root/soh/src/code
diff options
context:
space:
mode:
authorbriaguya <70942617+briaguya-ai@users.noreply.github.com>2022-12-26 06:37:40 -0500
committerGitHub <noreply@github.com>2022-12-26 06:37:40 -0500
commitf42f86e3ef4636e224eee474654eeda86c8d3a2b (patch)
tree6b7b82e646250fac672ec78a3dd7754a3b7366e1 /soh/src/code
parent85bccab1bb38e0fb497fc60e5e3db3aa35bc7b8e (diff)
fix: make fisherman rumble text work (#2279)
we weren't correctly setting the pakType in padMgr because the depreciated `gRumbleEnabled` cvar was being checked
Diffstat (limited to 'soh/src/code')
-rw-r--r--soh/src/code/padmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/padmgr.c b/soh/src/code/padmgr.c
index ed18dcbac..48752fed1 100644
--- a/soh/src/code/padmgr.c
+++ b/soh/src/code/padmgr.c
@@ -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) {