aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/mt32/FreeverbModel.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2012-11-15 14:09:52 +0200
committerFilippos Karapetis2012-11-15 14:30:41 +0200
commit3233edf9b843f16018b6142b344b08dedae74d67 (patch)
tree147da92c466ad5646373521ed8088ce9b399356e /audio/softsynth/mt32/FreeverbModel.cpp
parent97854df1a8d5b322fab12bad11ad4c859a28062b (diff)
downloadscummvm-rg350-3233edf9b843f16018b6142b344b08dedae74d67.tar.gz
scummvm-rg350-3233edf9b843f16018b6142b344b08dedae74d67.tar.bz2
scummvm-rg350-3233edf9b843f16018b6142b344b08dedae74d67.zip
MT32: Update the MT32 emulator to the latest munt revision
Previous munt revision was 189f607c88e7404ad99abcf4b90f23b103003ed1 (Feb 09, 2012). Current munt revision is f969d2081d41b669c1bfebd0026b5419c09517ae (Nov 15, 2012)
Diffstat (limited to 'audio/softsynth/mt32/FreeverbModel.cpp')
-rw-r--r--audio/softsynth/mt32/FreeverbModel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/softsynth/mt32/FreeverbModel.cpp b/audio/softsynth/mt32/FreeverbModel.cpp
index c11fa859d8..d9bd17e62e 100644
--- a/audio/softsynth/mt32/FreeverbModel.cpp
+++ b/audio/softsynth/mt32/FreeverbModel.cpp
@@ -20,7 +20,7 @@
#include "freeverb.h"
-using namespace MT32Emu;
+namespace MT32Emu {
FreeverbModel::FreeverbModel(float useScaleTuning, float useFiltVal, float useWet, Bit8u useRoom, float useDamp) {
freeverb = NULL;
@@ -76,3 +76,5 @@ bool FreeverbModel::isActive() const {
// FIXME: Not bothering to do this properly since we'll be replacing Freeverb soon...
return false;
}
+
+}