1
0
Fork 0

Changed OPL and CMS functions to also use the soundblaster base

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1726
This commit is contained in:
Sjoerd van der Berg 2004-03-15 13:58:27 +00:00
parent 0ec286c9d0
commit 12e1f8a18b

View file

@ -24,8 +24,8 @@ enum OPL_Mode {
OPL_none,OPL_cms,OPL_opl2,OPL_dualopl2,OPL_opl3
};
void OPL_Init(Section* sec,OPL_Mode,Bitu rate);
void CMS_Init(Section* sec,Bitu rate);
void OPL_Init(Section* sec,Bitu base,OPL_Mode mode,Bitu rate);
void CMS_Init(Section* sec,Bitu base,Bitu rate);
#endif