aboutsummaryrefslogtreecommitdiff
path: root/sound/softsynth
diff options
context:
space:
mode:
Diffstat (limited to 'sound/softsynth')
-rw-r--r--sound/softsynth/opl/dosbox.cpp8
-rw-r--r--sound/softsynth/opl/dosbox.h4
-rw-r--r--sound/softsynth/opl/mame.cpp4
-rw-r--r--sound/softsynth/opl/mame.h4
4 files changed, 10 insertions, 10 deletions
diff --git a/sound/softsynth/opl/dosbox.cpp b/sound/softsynth/opl/dosbox.cpp
index 25fda7f2e6..03c014ecfa 100644
--- a/sound/softsynth/opl/dosbox.cpp
+++ b/sound/softsynth/opl/dosbox.cpp
@@ -164,7 +164,7 @@ struct Handler : public DOSBox::Handler {
adlib_init(rate);
}
};
-} // end of namespace OPL2
+} // End of namespace OPL2
namespace OPL3 {
#define OPLTYPE_IS_OPL3
@@ -188,7 +188,7 @@ struct Handler : public DOSBox::Handler {
adlib_init(rate);
}
};
-} // end of namespace OPL3
+} // End of namespace OPL3
OPL::OPL(Config::OplType type) : _type(type), _rate(0), _handler(0) {
}
@@ -356,7 +356,7 @@ void OPL::readBuffer(int16 *buffer, int length) {
_handler->generate(buffer, length);
}
-} // end of namespace DOSBox
-} // end of namespace OPL
+} // End of namespace DOSBox
+} // End of namespace OPL
#endif // !DISABLE_DOSBOX_ADLIB
diff --git a/sound/softsynth/opl/dosbox.h b/sound/softsynth/opl/dosbox.h
index 488cc3d82a..4e27e3088a 100644
--- a/sound/softsynth/opl/dosbox.h
+++ b/sound/softsynth/opl/dosbox.h
@@ -113,8 +113,8 @@ public:
bool isStereo() const { return _type != Config::kOpl2; }
};
-} // end of namespace DOSBox
-} // end of namespace OPL
+} // End of namespace DOSBox
+} // End of namespace OPL
#endif // !DISABLE_DOSBOX_OPL
diff --git a/sound/softsynth/opl/mame.cpp b/sound/softsynth/opl/mame.cpp
index 906cf31626..06ea8692ee 100644
--- a/sound/softsynth/opl/mame.cpp
+++ b/sound/softsynth/opl/mame.cpp
@@ -1229,6 +1229,6 @@ FM_OPL *makeAdlibOPL(int rate) {
return OPLCreate(OPL_TYPE_YM3812, 3579545, rate);
}
-} // end of namespace MAME
-} // end of namespace OPL
+} // End of namespace MAME
+} // End of namespace OPL
diff --git a/sound/softsynth/opl/mame.h b/sound/softsynth/opl/mame.h
index 75008f59dd..0c3bcde5db 100644
--- a/sound/softsynth/opl/mame.h
+++ b/sound/softsynth/opl/mame.h
@@ -195,7 +195,7 @@ public:
bool isStereo() const { return false; }
};
-} // end of namespace MAME
-} // end of namespace OPL
+} // End of namespace MAME
+} // End of namespace OPL
#endif