mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 13:00:11 -07:00
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:
parent
85bccab1bb
commit
f42f86e3ef
3 changed files with 8 additions and 7 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue