summaryrefslogtreecommitdiffstats
path: root/src/audio_core/interpolate.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-09-25 20:06:42 +0200
committerSubv <subv2112@gmail.com>2017-09-26 01:31:37 +0200
commitd7459354f58d1b71fc0c5ec48de9242e6a2fd00c (patch)
tree20aa98adee17b0a2886273806a62f333d1198ab4 /src/audio_core/interpolate.cpp
parentMerge pull request #2952 from MerryMage/page-tables (diff)
downloadyuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.tar
yuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.tar.gz
yuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.tar.bz2
yuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.tar.lz
yuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.tar.xz
yuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.tar.zst
yuzu-d7459354f58d1b71fc0c5ec48de9242e6a2fd00c.zip
Diffstat (limited to 'src/audio_core/interpolate.cpp')
-rw-r--r--src/audio_core/interpolate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/interpolate.cpp b/src/audio_core/interpolate.cpp
index 16e68bc5c..83573d772 100644
--- a/src/audio_core/interpolate.cpp
+++ b/src/audio_core/interpolate.cpp
@@ -47,7 +47,7 @@ static void StepOverSamples(State& state, StereoBuffer16& input, float rate,
state.xn1 = input[inputi + 1];
state.fposition = fposition - inputi * scale_factor;
- input.erase(input.begin(), input.begin() + inputi + 2);
+ input.erase(input.begin(), std::next(input.begin(), inputi + 2));
}
void None(State& state, StereoBuffer16& input, float rate, DSP::HLE::StereoFrame16& output,