diff options
Diffstat (limited to 'audio/softsynth')
-rw-r--r-- | audio/softsynth/mt32/FileStream.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/softsynth/mt32/FileStream.cpp b/audio/softsynth/mt32/FileStream.cpp index 081f41a0e5..9e477d4e9b 100644 --- a/audio/softsynth/mt32/FileStream.cpp +++ b/audio/softsynth/mt32/FileStream.cpp @@ -21,6 +21,10 @@ #include "internals.h" +// Disable MSVC STL exceptions +#ifdef _MSC_VER +#define _HAS_EXCEPTIONS 0 +#endif #include "FileStream.h" namespace MT32Emu { |