diff options
author | John Willis | 2006-10-09 20:38:59 +0000 |
---|---|---|
committer | John Willis | 2006-10-09 20:38:59 +0000 |
commit | 9aa0984702d4b91bd4839acfc1ae68cfabf5b84f (patch) | |
tree | 16cf86bde5abb8747d28dcbe7c79a1832b9fd378 | |
parent | 651f9f2ad7367ab1e57d51ea179dacf3025bcf3c (diff) | |
download | scummvm-rg350-9aa0984702d4b91bd4839acfc1ae68cfabf5b84f.tar.gz scummvm-rg350-9aa0984702d4b91bd4839acfc1ae68cfabf5b84f.tar.bz2 scummvm-rg350-9aa0984702d4b91bd4839acfc1ae68cfabf5b84f.zip |
Fix GP2X ifdef error in initial patch. Sorry.
svn-id: r24257
-rw-r--r-- | sound/fmopl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp index 9fd8a33ee4..3a78f465eb 100644 --- a/sound/fmopl.cpp +++ b/sound/fmopl.cpp @@ -35,7 +35,7 @@ #include "common/util.h" -#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(__GP2X__) || defined (__MAEMO__) || defined(__DS__) +#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__) #include "common/config-manager.h" #endif |