warning-free compilation

This commit is contained in:
tildearrow 2021-12-14 12:33:26 -05:00
parent 9da9ed3cd7
commit bde8a7f79d
16 changed files with 28 additions and 35 deletions

View file

@ -32,7 +32,10 @@ class DivPlatformNES: public DivDispatch {
wave(-1) {}
};
Channel chan[5];
int dacPeriod, dacRate, dacPos, dacSample, sampleBank;
int dacPeriod, dacRate;
unsigned int dacPos;
int dacSample;
unsigned char sampleBank;
unsigned char lastPan;
float freqBase;