SID3: now implement getPan
whatever
This commit is contained in:
parent
ca7fe252a3
commit
dfb12271da
|
|
@ -1265,6 +1265,10 @@ DivDispatchOscBuffer* DivPlatformSID3::getOscBuffer(int ch) {
|
||||||
return oscBuf[ch];
|
return oscBuf[ch];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned short DivPlatformSID3::getPan(int ch) {
|
||||||
|
return (chan[ch].panLeft<<8)|chan[ch].panRight;
|
||||||
|
}
|
||||||
|
|
||||||
unsigned char* DivPlatformSID3::getRegisterPool() {
|
unsigned char* DivPlatformSID3::getRegisterPool() {
|
||||||
return regPool;
|
return regPool;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -260,6 +260,7 @@ class DivPlatformSID3: public DivDispatch {
|
||||||
void notifyWaveChange(int wave);
|
void notifyWaveChange(int wave);
|
||||||
float getPostAmp();
|
float getPostAmp();
|
||||||
bool getDCOffRequired();
|
bool getDCOffRequired();
|
||||||
|
unsigned short getPan(int chan);
|
||||||
DivMacroInt* getChanMacroInt(int ch);
|
DivMacroInt* getChanMacroInt(int ch);
|
||||||
DivChannelModeHints getModeHints(int chan);
|
DivChannelModeHints getModeHints(int chan);
|
||||||
void notifyInsDeletion(void* ins);
|
void notifyInsDeletion(void* ins);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue