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

@ -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;