aboutsummaryrefslogtreecommitdiff
path: root/sound/softsynth/opl/mame.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-05-05 22:18:26 +0000
committerJohannes Schickel2009-05-05 22:18:26 +0000
commit625f41c135a2dc9b242443a874370e5273ecb638 (patch)
tree1a5f679307eeb527bbac54ab78d0848daa38df08 /sound/softsynth/opl/mame.h
parent5cc44292a2d47faa418651169f5a66cf99419e78 (diff)
downloadscummvm-rg350-625f41c135a2dc9b242443a874370e5273ecb638.tar.gz
scummvm-rg350-625f41c135a2dc9b242443a874370e5273ecb638.tar.bz2
scummvm-rg350-625f41c135a2dc9b242443a874370e5273ecb638.zip
Cleanup:
- Rename OPL_DOSBox to OPL, since it's inside a seperate namespace anyway - Reanme MAME_OPL to OPL, since it's inside a seperate namespace anyway svn-id: r40338
Diffstat (limited to 'sound/softsynth/opl/mame.h')
-rw-r--r--sound/softsynth/opl/mame.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/softsynth/opl/mame.h b/sound/softsynth/opl/mame.h
index a9835f3b97..75008f59dd 100644
--- a/sound/softsynth/opl/mame.h
+++ b/sound/softsynth/opl/mame.h
@@ -176,12 +176,12 @@ void YM3812UpdateOne(FM_OPL *OPL, int16 *buffer, int length);
FM_OPL *makeAdlibOPL(int rate);
// OPL API implementation
-class OPL_MAME : public OPL {
+class OPL : public ::OPL::OPL {
private:
FM_OPL *_opl;
public:
- OPL_MAME() : _opl(0) {}
- ~OPL_MAME();
+ OPL() : _opl(0) {}
+ ~OPL();
bool init(int rate);
void reset();