Remove unused variable
This commit is contained in:
parent
882b1c0aae
commit
139ef4be29
|
@ -446,10 +446,6 @@ void DivPlatformC140::renderSamples(int sysID) {
|
||||||
sampleMemLen=memPos+256;
|
sampleMemLen=memPos+256;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DivPlatformC140::setChipModel(int type) {
|
|
||||||
chipType=type;
|
|
||||||
}
|
|
||||||
|
|
||||||
void DivPlatformC140::setFlags(const DivConfig& flags) {
|
void DivPlatformC140::setFlags(const DivConfig& flags) {
|
||||||
chipClock=32000*256; // 8.192MHz and 12.288MHz input, verified from Assault Schematics
|
chipClock=32000*256; // 8.192MHz and 12.288MHz input, verified from Assault Schematics
|
||||||
CHECK_CUSTOM_CLOCK;
|
CHECK_CUSTOM_CLOCK;
|
||||||
|
|
|
@ -51,7 +51,6 @@ class DivPlatformC140: public DivDispatch {
|
||||||
Channel chan[24];
|
Channel chan[24];
|
||||||
DivDispatchOscBuffer* oscBuf[24];
|
DivDispatchOscBuffer* oscBuf[24];
|
||||||
bool isMuted[24];
|
bool isMuted[24];
|
||||||
int chipType;
|
|
||||||
unsigned int sampleOff[256];
|
unsigned int sampleOff[256];
|
||||||
bool sampleLoaded[256];
|
bool sampleLoaded[256];
|
||||||
|
|
||||||
|
@ -83,7 +82,6 @@ class DivPlatformC140: public DivDispatch {
|
||||||
void tick(bool sysTick=true);
|
void tick(bool sysTick=true);
|
||||||
void muteChannel(int ch, bool mute);
|
void muteChannel(int ch, bool mute);
|
||||||
int getOutputCount();
|
int getOutputCount();
|
||||||
void setChipModel(int type);
|
|
||||||
void notifyInsChange(int ins);
|
void notifyInsChange(int ins);
|
||||||
void notifyWaveChange(int wave);
|
void notifyWaveChange(int wave);
|
||||||
void notifyInsDeletion(void* ins);
|
void notifyInsDeletion(void* ins);
|
||||||
|
|
Loading…
Reference in a new issue