mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 23:59:54 -06:00
DSP: Fix a missing mask for the predscale register
This commit is contained in:
@ -208,6 +208,6 @@ void Accelerator::SetYn2(s16 yn2)
|
||||
|
||||
void Accelerator::SetPredScale(u16 pred_scale)
|
||||
{
|
||||
m_pred_scale = pred_scale;
|
||||
m_pred_scale = pred_scale & 0x7f;
|
||||
}
|
||||
} // namespace DSP
|
||||
|
Reference in New Issue
Block a user