mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
DSP: Fix a missing mask for the predscale register
This commit is contained in:
parent
5dae20ea9d
commit
6484776920
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user