1
0
Fork 0
forked from len0rd/rockbox

Clean out an unused struct member from the synthObject struct

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15189 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-10-18 13:43:13 +00:00
parent 7ed7c840da
commit ab5a38db92
3 changed files with 1 additions and 8 deletions

View file

@ -316,7 +316,6 @@ static inline void synthVoice(struct SynthObject * so, int32_t * out, unsigned i
else
{
so->delta = -so->delta; /* At this point cp_temp is wrong. We need to take a step */
so->loopDir = LOOPDIR_FORWARD;
}
}
@ -331,7 +330,6 @@ static inline void synthVoice(struct SynthObject * so, int32_t * out, unsigned i
else
{
so->delta = -so->delta;
so->loopDir = LOOPDIR_REVERSE;
}
}