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:
parent
7ed7c840da
commit
ab5a38db92
3 changed files with 1 additions and 8 deletions
|
@ -84,9 +84,6 @@
|
|||
#define LOOP_PINGPONG 8
|
||||
#define LOOP_REVERSE 16
|
||||
|
||||
#define LOOPDIR_FORWARD 0
|
||||
#define LOOPDIR_REVERSE 1
|
||||
|
||||
struct MIDIfile
|
||||
{
|
||||
int Length;
|
||||
|
@ -97,14 +94,13 @@ struct MIDIfile
|
|||
int numPatches;
|
||||
};
|
||||
|
||||
|
||||
struct SynthObject
|
||||
{
|
||||
struct GWaveform * wf;
|
||||
int delta;
|
||||
int decay;
|
||||
unsigned int cp; /* unsigned int */
|
||||
int state, loopState, loopDir;
|
||||
int state, loopState;
|
||||
int note, vol, ch, isUsed;
|
||||
int curRate, curOffset, targetOffset;
|
||||
int curPoint;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue