early-access version 1861

main
pineappleEA 2021-07-08 21:26:32 +02:00
parent 2da54f6e73
commit 6862e786a2
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 1860.
This is the source code for early-access 1861.
## Legal Notice

View File

@ -45,7 +45,7 @@ s32 ApplyMixRamp(std::span<s32> output, std::span<const s32> input, float gain,
// XC2 passes in NaN mix volumes, causing further issues as we handle everything as s32 rather
// than float, so the NaN propogation is lost. As the samples get further modified for
// volume etc, they can get out of NaN range, so a later heuristic for catching this is
// more difficult. Handle that here by setting these samples to silence.
// more difficult. Handle it here by setting these samples to silence.
if (std::isnan(gain)) {
gain = 0.0f;
delta = 0.0f;