new opl3 emulator

This commit is contained in:
khokh2001 2014-11-23 00:39:26 +09:00
parent e9075334a3
commit 88f4305e7e
2 changed files with 2 additions and 2 deletions

View File

@ -1142,4 +1142,4 @@ NukedOPL3::NukedOPL3(bool stereo) {
OPLEmul *NukedOPL3Create(bool stereo) { OPLEmul *NukedOPL3Create(bool stereo) {
return new NukedOPL3(stereo); return new NukedOPL3(stereo);
} }

View File

@ -115,4 +115,4 @@ public:
void SetPanning(int c, float left, float right); void SetPanning(int c, float left, float right);
NukedOPL3(bool stereo); NukedOPL3(bool stereo);
}; };