diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-05-07 16:54:44 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-05-07 16:54:44 -0400 |
| commit | 333ea2f775ff2ec1bd7d75601154105f24a78f18 (patch) | |
| tree | b78a4f60789d97c9831ea17e42568e1cb175726f /src/JSystem | |
| parent | 6d4db5adc720cd8ef615d90320524311551e008a (diff) | |
Cleanup
Diffstat (limited to 'src/JSystem')
| -rw-r--r-- | src/JSystem/JAudio/JASTrack.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/JSystem/JAudio/JASTrack.cpp b/src/JSystem/JAudio/JASTrack.cpp index 15822a06..a8d93d91 100644 --- a/src/JSystem/JAudio/JASTrack.cpp +++ b/src/JSystem/JAudio/JASTrack.cpp @@ -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; } |
