Fix build
This commit is contained in:
parent
47574fdede
commit
5da139ec82
|
@ -61,9 +61,6 @@ class DivPlatformArcade: public DivPlatformOPM {
|
||||||
void acquire_nuked(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire_nuked(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
void acquire_ymfm(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire_ymfm(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
|
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
|
|
|
@ -123,6 +123,9 @@ class DivPlatformFMBase: public DivDispatch {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
friend void putDispatchChip(void*,int);
|
||||||
|
friend void putDispatchChan(void*,int,int);
|
||||||
|
|
||||||
DivPlatformFMBase():
|
DivPlatformFMBase():
|
||||||
DivDispatch(),
|
DivDispatch(),
|
||||||
lastBusy(0),
|
lastBusy(0),
|
||||||
|
|
|
@ -57,9 +57,6 @@ class DivPlatformTX81Z: public DivPlatformOPM {
|
||||||
int octave(int freq);
|
int octave(int freq);
|
||||||
int toFreq(int freq);
|
int toFreq(int freq);
|
||||||
|
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
|
|
|
@ -51,9 +51,6 @@ class DivPlatformYM2203: public DivPlatformOPN {
|
||||||
bool extMode, noExtMacros;
|
bool extMode, noExtMacros;
|
||||||
unsigned char prescale;
|
unsigned char prescale;
|
||||||
|
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
class DivPlatformYM2203Ext: public DivPlatformYM2203 {
|
class DivPlatformYM2203Ext: public DivPlatformYM2203 {
|
||||||
OPNOpChannel opChan[4];
|
OPNOpChannel opChan[4];
|
||||||
bool isOpMuted[4];
|
bool isOpMuted[4];
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
public:
|
public:
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
void* getChanState(int chan);
|
void* getChanState(int chan);
|
||||||
|
|
|
@ -65,8 +65,6 @@ class DivPlatformYM2608: public DivPlatformOPN {
|
||||||
|
|
||||||
double NOTE_OPNB(int ch, int note);
|
double NOTE_OPNB(int ch, int note);
|
||||||
double NOTE_ADPCMB(int note);
|
double NOTE_ADPCMB(int note);
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
class DivPlatformYM2608Ext: public DivPlatformYM2608 {
|
class DivPlatformYM2608Ext: public DivPlatformYM2608 {
|
||||||
OPNOpChannelStereo opChan[4];
|
OPNOpChannelStereo opChan[4];
|
||||||
bool isOpMuted[4];
|
bool isOpMuted[4];
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
public:
|
public:
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
void* getChanState(int chan);
|
void* getChanState(int chan);
|
||||||
|
|
|
@ -35,9 +35,6 @@ class DivPlatformYM2610: public DivPlatformYM2610Base<14> {
|
||||||
1, 2, 4, 5
|
1, 2, 4, 5
|
||||||
};
|
};
|
||||||
|
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
|
|
|
@ -31,9 +31,6 @@ class DivPlatformYM2610B: public DivPlatformYM2610Base<16> {
|
||||||
0, 1, 2, 4, 5, 6
|
0, 1, 2, 4, 5, 6
|
||||||
};
|
};
|
||||||
|
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
void acquire(short* bufL, short* bufR, size_t start, size_t len);
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
class DivPlatformYM2610BExt: public DivPlatformYM2610B {
|
class DivPlatformYM2610BExt: public DivPlatformYM2610B {
|
||||||
OPNOpChannelStereo opChan[4];
|
OPNOpChannelStereo opChan[4];
|
||||||
bool isOpMuted[4];
|
bool isOpMuted[4];
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
public:
|
public:
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
void* getChanState(int chan);
|
void* getChanState(int chan);
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
class DivPlatformYM2610Ext: public DivPlatformYM2610 {
|
class DivPlatformYM2610Ext: public DivPlatformYM2610 {
|
||||||
OPNOpChannelStereo opChan[4];
|
OPNOpChannelStereo opChan[4];
|
||||||
bool isOpMuted[4];
|
bool isOpMuted[4];
|
||||||
friend void putDispatchChip(void*,int);
|
|
||||||
friend void putDispatchChan(void*,int,int);
|
|
||||||
public:
|
public:
|
||||||
int dispatch(DivCommand c);
|
int dispatch(DivCommand c);
|
||||||
void* getChanState(int chan);
|
void* getChanState(int chan);
|
||||||
|
|
Loading…
Reference in a new issue