mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
DSP: Fix a missing mask for the predscale register
This commit is contained in:
parent
5dae20ea9d
commit
6484776920
1 changed files with 1 additions and 1 deletions
|
@ -208,6 +208,6 @@ void Accelerator::SetYn2(s16 yn2)
|
||||||
|
|
||||||
void Accelerator::SetPredScale(u16 pred_scale)
|
void Accelerator::SetPredScale(u16 pred_scale)
|
||||||
{
|
{
|
||||||
m_pred_scale = pred_scale;
|
m_pred_scale = pred_scale & 0x7f;
|
||||||
}
|
}
|
||||||
} // namespace DSP
|
} // namespace DSP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue