Reduce unused variables

This commit is contained in:
cam900 2022-12-12 14:42:47 +09:00
parent 662a5c5c61
commit 6cfbbe9fa4
2 changed files with 0 additions and 5 deletions

View File

@ -484,9 +484,6 @@ void DivPlatformNamcoWSG::reset() {
namco->set_voices(chans);
namco->set_stereo((devType==2 || devType==30));
namco->device_start(NULL);
lastPan=0xff;
cycles=0;
curChan=-1;
}
bool DivPlatformNamcoWSG::isStereo() {

View File

@ -67,9 +67,7 @@ class DivPlatformNamcoWSG: public DivDispatch {
QueuedWrite(unsigned short a, unsigned char v): addr(a), val(v) {}
};
std::queue<QueuedWrite> writes;
unsigned char lastPan;
int cycles, curChan, delay;
namco_audio_device* namco;
int devType, chans;
unsigned char regPool[512];