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

Pass 1, not false to MixAUXSamples as the aux ID in UCode_AX.cpp. #103

Merged
merged 1 commit into from Feb 23, 2014

Conversation

lioncash
Copy link
Member

An AUX ID of 1 means to use AUX B, however in the previous case, we'd be using AUX A (id of 0). Considering the case is "CMD_MIX_AUXB_NOWRITE" we don't want this.

@@ -208,7 +208,7 @@ void CUCode_AX::HandleCommandList()
case CMD_MIX_AUXB_NOWRITE:
addr_hi = m_cmdlist[curr_idx++];
addr_lo = m_cmdlist[curr_idx++];
MixAUXSamples(false, 0, HILO_TO_32(addr));
MixAUXSamples(0, 0, HILO_TO_32(addr));

This comment was marked as off-topic.

This comment was marked as off-topic.

…OWRITE should have 1 being passed, not false, as the aux ID in MixAUXSamples.
delroth added a commit that referenced this pull request Feb 23, 2014
Pass 1, not false to MixAUXSamples' case "CMD_MIX_AUXB_NOWRITE" as the aux ID in UCode_AX.cpp.
@delroth delroth merged commit 68ce2cf into dolphin-emu:master Feb 23, 2014
@lioncash lioncash deleted the mixaux-correction branch February 23, 2014 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants