Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

darius: fix: MSM5205 output ports are inverted #7311

Merged
merged 1 commit into from Oct 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mame/drivers/darius.cpp
Expand Up @@ -324,8 +324,8 @@ void darius_state::update_psg1(int port)

void darius_state::update_da()
{
const int left = m_def_vol[(m_pan[4] >> 4) & 0x0f];
const int right = m_def_vol[(m_pan[4] >> 0) & 0x0f];
const int left = m_def_vol[(m_pan[4] >> 0) & 0x0f];
const int right = m_def_vol[(m_pan[4] >> 4) & 0x0f];

if (m_msm5205_l != nullptr)
m_msm5205_l->flt_volume_set_volume(left / 100.0);
Expand Down