spu: Mask SRR0 at write

This commit is contained in:
Eladash 2019-10-01 10:06:34 +03:00 committed by Ivan
parent 3455d76970
commit c2278fb879
4 changed files with 4 additions and 4 deletions

View file

@ -2436,7 +2436,7 @@ bool spu_thread::set_ch_value(u32 ch, u32 value)
{
case SPU_WrSRR0:
{
srr0 = value;
srr0 = value & 0x3fffc;
return true;
}