aboutsummaryrefslogtreecommitdiff
path: root/backends/midi/stmidi.cpp
diff options
context:
space:
mode:
authorMax Horn2010-11-29 16:18:43 +0000
committerMax Horn2010-11-29 16:18:43 +0000
commitdf05ed1a46516f7e4d5c6e78f7f096208dbad790 (patch)
treee7b9077c9a92d5ff54e22705cdd6c9ff50faa38a /backends/midi/stmidi.cpp
parent4e0e406181a36e5f5ff59e6b917f81f317e1de1a (diff)
downloadscummvm-rg350-df05ed1a46516f7e4d5c6e78f7f096208dbad790.tar.gz
scummvm-rg350-df05ed1a46516f7e4d5c6e78f7f096208dbad790.tar.bz2
scummvm-rg350-df05ed1a46516f7e4d5c6e78f7f096208dbad790.zip
BACKENDS: Include scummsys.h at top of all .cpp files, *before* any #ifdefs
svn-id: r54573
Diffstat (limited to 'backends/midi/stmidi.cpp')
-rw-r--r--backends/midi/stmidi.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/backends/midi/stmidi.cpp b/backends/midi/stmidi.cpp
index 01e28aa5ca..6e4d69f255 100644
--- a/backends/midi/stmidi.cpp
+++ b/backends/midi/stmidi.cpp
@@ -34,11 +34,13 @@
* cycles. I might change so sysex messages are sent the other way later.
*/
-#if defined __MINT__
-
// Disable symbol overrides so that we can use system headers.
#define FORBIDDEN_SYMBOL_ALLOW_ALL
+#include "common/scummsys.h"
+
+#if defined __MINT__
+
#include <osbind.h>
#include "sound/mpu401.h"
#include "common/util.h"