From af5321c78ee5c72a55b526fd2ed0d95ca1c05af9 Mon Sep 17 00:00:00 2001 From: TurtleP Date: Sun, 25 Sep 2022 12:33:23 -0400 Subject: [PATCH] spaces to tabs --- libctru/source/ndsp/ndsp-channel.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libctru/source/ndsp/ndsp-channel.c b/libctru/source/ndsp/ndsp-channel.c index 1a8456b..c95a8c3 100644 --- a/libctru/source/ndsp/ndsp-channel.c +++ b/libctru/source/ndsp/ndsp-channel.c @@ -125,8 +125,8 @@ void ndspChnSetInterp(int id, ndspInterpType type) ndspInterpType ndspChnGetInterp(int id) { - ndspChnSt* chn = &ndspChn[id]; - return chn->interpType; + ndspChnSt* chn = &ndspChn[id]; + return chn->interpType; } void ndspChnSetRate(int id, float rate) @@ -140,7 +140,7 @@ void ndspChnSetRate(int id, float rate) float ndspChnGetRate(int id) { - ndspChnSt* chn = &ndspChn[id]; + ndspChnSt* chn = &ndspChn[id]; return chn->rate; } @@ -155,10 +155,10 @@ void ndspChnSetMix(int id, float mix[12]) void ndspChnGetMix(int id, float out_mix[12]) { - ndspChnSt* chn = &ndspChn[id]; - LightLock_Lock(&chn->lock); - memcpy(out_mix, chn->mix, sizeof(ndspChn[id].mix)); - LightLock_Unlock(&chn->lock); + ndspChnSt* chn = &ndspChn[id]; + LightLock_Lock(&chn->lock); + memcpy(out_mix, chn->mix, sizeof(ndspChn[id].mix)); + LightLock_Unlock(&chn->lock); } void ndspChnSetAdpcmCoefs(int id, u16 coefs[16])