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;
}