diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-04-02 19:33:05 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-04-02 19:33:05 -0400 |
| commit | 4e7634a693d5fb641ecee69f09d331ace88b063f (patch) | |
| tree | be873a1380d177f7bfd8274bc53baf979699203f /src/JSystem | |
| parent | 8716b2728753398b1c0f5f7f12d737e3b083eab0 (diff) | |
Cleanup
Diffstat (limited to 'src/JSystem')
| -rw-r--r-- | src/JSystem/JAudio/JASTrack.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/JSystem/JAudio/JASTrack.cpp b/src/JSystem/JAudio/JASTrack.cpp index 6f970021..15822a06 100644 --- a/src/JSystem/JAudio/JASTrack.cpp +++ b/src/JSystem/JAudio/JASTrack.cpp @@ -1330,8 +1330,8 @@ int JASystem::TTrack::writePortAppDirect(u32 port, u16 value) { if (port == 0 || port == 1) { TIntrMgr& intrMgr = mIntrMgr; - u32 mIntrParam = port == 0 ? REQUEST_UNK_3 : REQUEST_UNK_4; - intrMgr.request(mIntrParam); + u32 intrParam = port == 0 ? REQUEST_UNK_3 : REQUEST_UNK_4; + intrMgr.request(intrParam); } return 1; } |
