source-mirror: Remove unnecessary register keyword

This keyword also no longer exists in C++17
This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2019-01-14 23:04:05 +01:00 committed by Michael Fabian Dirks
parent ec544bddb3
commit f41bd2c7c1
1 changed files with 3 additions and 3 deletions

View File

@ -465,9 +465,9 @@ void Source::Mirror::deactivate()
static inline void mix_audio(float* p_out, float* p_in, size_t pos, size_t count)
{
register float* out = p_out;
register float* in = p_in + pos;
register float* end = in + count;
float* out = p_out;
float* in = p_in + pos;
float* end = in + count;
while (in < end)
*(out++) += *(in++);