diff options
author | Max Horn | 2009-10-04 21:26:33 +0000 |
---|---|---|
committer | Max Horn | 2009-10-04 21:26:33 +0000 |
commit | f242266f6dc1f18e1b47aa4942c263cf81b75300 (patch) | |
tree | 349e8aa3db0d2dfbb54676aa84bb13d2e40dabdf /sound/softsynth | |
parent | c8f002ae437677c08ab6154983c70f146607bfaa (diff) | |
download | scummvm-rg350-f242266f6dc1f18e1b47aa4942c263cf81b75300.tar.gz scummvm-rg350-f242266f6dc1f18e1b47aa4942c263cf81b75300.tar.bz2 scummvm-rg350-f242266f6dc1f18e1b47aa4942c263cf81b75300.zip |
Change a couple places from 'end of namespace' to 'End of namespace', for consistency
svn-id: r44634
Diffstat (limited to 'sound/softsynth')
-rw-r--r-- | sound/softsynth/opl/dosbox.cpp | 8 | ||||
-rw-r--r-- | sound/softsynth/opl/dosbox.h | 4 | ||||
-rw-r--r-- | sound/softsynth/opl/mame.cpp | 4 | ||||
-rw-r--r-- | sound/softsynth/opl/mame.h | 4 |
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 |