diff options
author | Cameron Cawley | 2017-11-14 23:00:56 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2018-04-07 09:30:07 +0200 |
commit | 9111998c49958646a9216548b9c886136afd7c14 (patch) | |
tree | b54641021cc27c9c9d3960001f929e8639a5bb2f /audio/softsynth | |
parent | 668084c58a2267897f58eb6a6d9baac09b65969d (diff) | |
download | scummvm-rg350-9111998c49958646a9216548b9c886136afd7c14.tar.gz scummvm-rg350-9111998c49958646a9216548b9c886136afd7c14.tar.bz2 scummvm-rg350-9111998c49958646a9216548b9c886136afd7c14.zip |
DS: Fix compilation with devkitARM r47
Diffstat (limited to 'audio/softsynth')
-rw-r--r-- | audio/softsynth/opl/mame.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/softsynth/opl/mame.cpp b/audio/softsynth/opl/mame.cpp index eb08582da0..cba95422fc 100644 --- a/audio/softsynth/opl/mame.cpp +++ b/audio/softsynth/opl/mame.cpp @@ -29,6 +29,10 @@ #include <stdarg.h> #include <math.h> +#if defined(__DS__) +#include "dsmain.h" +#endif + #include "mame.h" #include "audio/mixer.h" @@ -40,10 +44,6 @@ #include "common/config-manager.h" #endif -#if defined(__DS__) -#include "dsmain.h" -#endif - namespace OPL { namespace MAME { |