Fix NodeStates.GetWorkBufferSize

This commit is contained in:
Ac_K 2019-09-19 23:37:09 +02:00
parent fa44e38697
commit 1ed94f1240

View file

@ -13,7 +13,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
size |= 7;
}
return 4 * (totalMixCount * totalMixCount) + 0x12 * totalMixCount + 2 * (size / 8);
return 4 * (totalMixCount * totalMixCount) + 12 * totalMixCount + 2 * (size / 8);
}
}
}