From 6862e786a291eaebe67ab88463eca3fe428cb9bf Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Thu, 8 Jul 2021 21:26:32 +0200 Subject: [PATCH] early-access version 1861 --- README.md | 2 +- src/audio_core/command_generator.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ae29363e6..07cddb574 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/audio_core/command_generator.cpp b/src/audio_core/command_generator.cpp index 3b28806b2..45b2eef52 100755 --- a/src/audio_core/command_generator.cpp +++ b/src/audio_core/command_generator.cpp @@ -45,7 +45,7 @@ s32 ApplyMixRamp(std::span output, std::span 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;