mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
source-mirror: Remove unnecessary register keyword
This keyword also no longer exists in C++17
This commit is contained in:
parent
ec544bddb3
commit
f41bd2c7c1
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
static inline void mix_audio(float* p_out, float* p_in, size_t pos, size_t count)
|
||||||
{
|
{
|
||||||
register float* out = p_out;
|
float* out = p_out;
|
||||||
register float* in = p_in + pos;
|
float* in = p_in + pos;
|
||||||
register float* end = in + count;
|
float* end = in + count;
|
||||||
|
|
||||||
while (in < end)
|
while (in < end)
|
||||||
*(out++) += *(in++);
|
*(out++) += *(in++);
|
||||||
|
|
Loading…
Reference in a new issue