OPN: VGM export - good night

This commit is contained in:
tildearrow 2022-05-11 03:41:02 -05:00
parent ab969c1da0
commit ff0319780e
7 changed files with 1627 additions and 22 deletions

View file

@ -32,8 +32,8 @@ class DivYM2203Interface: public ymfm::ymfm_interface {
class DivPlatformYM2203: public DivDispatch {
protected:
const unsigned short chanOffs[6]={
0x00, 0x01, 0x02, 0x100, 0x101, 0x102
const unsigned short chanOffs[3]={
0x00, 0x01, 0x02
};
struct Channel {
@ -101,10 +101,9 @@ class DivPlatformYM2203: public DivDispatch {
bool extMode;
short oldWrites[512];
short pendingWrites[512];
short oldWrites[256];
short pendingWrites[256];
double NOTE_OPN(int ch, int note);
friend void putDispatchChan(void*,int,int);
public: