mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-30 00:13:03 +00:00
SID3: now implement getPan
whatever
This commit is contained in:
parent
ca7fe252a3
commit
dfb12271da
2 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue