diff options
author | Eugene Sandulenko | 2016-12-17 20:32:04 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-12-17 20:32:04 +0100 |
commit | f98730028cd0f82c7545a4fd8de8af62b8231607 (patch) | |
tree | f4acca18c2e4f91db46433d729a9cb352e54ce92 /audio | |
parent | 973aef55743a26cdf6d754e921fde98c74e1434c (diff) | |
download | scummvm-rg350-f98730028cd0f82c7545a4fd8de8af62b8231607.tar.gz scummvm-rg350-f98730028cd0f82c7545a4fd8de8af62b8231607.tar.bz2 scummvm-rg350-f98730028cd0f82c7545a4fd8de8af62b8231607.zip |
MT32: Prevent Munt from including <fstream>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/softsynth/mt32.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 8ad456e3a3..76c3072097 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -49,6 +49,10 @@ #include "gui/message.h" +// prevents load of unused FileStream API because it includes a standard library +// include, per _sev +#define MT32EMU_FILE_STREAM_H + #include "audio/softsynth/mt32/c_interface/cpp_interface.h" namespace MT32Emu { |