SID3: now implement getPan

whatever
This commit is contained in:
tildearrow 2024-10-03 12:34:02 -05:00
parent ca7fe252a3
commit dfb12271da
2 changed files with 5 additions and 0 deletions

View file

@ -1265,6 +1265,10 @@ DivDispatchOscBuffer* DivPlatformSID3::getOscBuffer(int ch) {
return oscBuf[ch];
}
unsigned short DivPlatformSID3::getPan(int ch) {
return (chan[ch].panLeft<<8)|chan[ch].panRight;
}
unsigned char* DivPlatformSID3::getRegisterPool() {
return regPool;
}

View file

@ -260,6 +260,7 @@ class DivPlatformSID3: public DivDispatch {
void notifyWaveChange(int wave);
float getPostAmp();
bool getDCOffRequired();
unsigned short getPan(int chan);
DivMacroInt* getChanMacroInt(int ch);
DivChannelModeHints getModeHints(int chan);
void notifyInsDeletion(void* ins);