Brought back and changed some variables from inside a #if 0 ... #endif

svn-id: r28507
This commit is contained in:
Kari Salminen 2007-08-09 17:26:41 +00:00
parent 89c30c871f
commit ae1f66994e

View File

@ -110,11 +110,9 @@ struct IIgsSampleHeader {
IIgsInstrumentHeader instrument;
};
#if 0
static SoundInstrument *instruments;
static int numInstruments;
static uint8 *wave;
#endif
static IIgsInstrumentHeader g_instruments[MAX_INSTRUMENTS];
static uint g_numInstruments = 0;
static int16 g_wave[SIERRASTANDARD_SIZE]; // FIXME? Should this be allocated from the heap? (Size is 128KiB)
bool readIIgsEnvelope(IIgsEnvelope &envelope, Common::SeekableReadStream &stream) {
for (int segNum = 0; segNum < ENVELOPE_SEGMENT_COUNT; segNum++) {