forked from len0rd/rockbox
Make synthVoice return int instead of short, gives a nice speed up also add a comment
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14988 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bd4aea3769
commit
8219f2801a
2 changed files with 5 additions and 3 deletions
|
|
@ -255,8 +255,8 @@ inline void stopVoice(struct SynthObject * so)
|
|||
so->decay = 0;
|
||||
}
|
||||
|
||||
signed short int synthVoice(struct SynthObject * so) ICODE_ATTR;
|
||||
signed short int synthVoice(struct SynthObject * so)
|
||||
int synthVoice(struct SynthObject * so) ICODE_ATTR;
|
||||
int synthVoice(struct SynthObject * so)
|
||||
{
|
||||
struct GWaveform * wf;
|
||||
register int s;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue