This commit is contained in:
LagoLunatic
2026-05-07 16:54:44 -04:00
parent 6d4db5adc7
commit 333ea2f775
10 changed files with 39 additions and 41 deletions
+1 -4
View File
@@ -1328,10 +1328,7 @@ void JASystem::TTrack::writeSelfPort(int param_1, u16 param_2) {
int JASystem::TTrack::writePortAppDirect(u32 port, u16 value) {
mTrackPort.writeImport(port, value);
if (port == 0 || port == 1) {
TIntrMgr& intrMgr = mIntrMgr;
u32 intrParam = port == 0 ? REQUEST_UNK_3 : REQUEST_UNK_4;
intrMgr.request(intrParam);
mIntrMgr.request(port == 0 ? REQUEST_UNK_3 : REQUEST_UNK_4);
}
return 1;
}