commit requested changes

This commit is contained in:
tildearrow 2022-06-06 13:32:57 -05:00
parent 44cee98868
commit d3a3473f19
5 changed files with 10 additions and 10 deletions

View file

@ -29,7 +29,7 @@ class DivYM2203Interface: public ymfm::ymfm_interface {
};
class DivPlatformYM2203: public DivPlatformOPNBase {
class DivPlatformYM2203: public DivPlatformOPN {
protected:
const unsigned short chanOffs[3]={
0x00, 0x01, 0x02
@ -118,7 +118,7 @@ class DivPlatformYM2203: public DivPlatformOPNBase {
int init(DivEngine* parent, int channels, int sugRate, unsigned int flags);
void quit();
DivPlatformYM2203():
DivPlatformOPNBase(4720270.0, 36, 16) {}
DivPlatformOPN(4720270.0, 36, 16) {}
~DivPlatformYM2203();
};
#endif