diff options
author | Eugene Sandulenko | 2005-11-27 02:35:57 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-11-27 02:35:57 +0000 |
commit | edfae828f6a792fe4809ca77a1181a00ed8b9f46 (patch) | |
tree | 69669f918ebfcb846c9a699a81c1c74804e720d1 /sound | |
parent | e6aba1f7aa00721140809b7b55270c4e171f53e5 (diff) | |
download | scummvm-rg350-edfae828f6a792fe4809ca77a1181a00ed8b9f46.tar.gz scummvm-rg350-edfae828f6a792fe4809ca77a1181a00ed8b9f46.tar.bz2 scummvm-rg350-edfae828f6a792fe4809ca77a1181a00ed8b9f46.zip |
Patch #1341626: "New GP32 port"
svn-id: r19710
Diffstat (limited to 'sound')
-rw-r--r-- | sound/fmopl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp index 455b24b3d4..fe19443aea 100644 --- a/sound/fmopl.cpp +++ b/sound/fmopl.cpp @@ -34,7 +34,7 @@ #include "common/util.h" -#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_ARM) +#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_ARM) || defined(__GP32__) #include "common/config-manager.h" #endif @@ -1167,7 +1167,7 @@ FM_OPL *makeAdlibOPL(int rate) { // We need to emulate one YM3812 chip int env_bits = FMOPL_ENV_BITS_HQ; int eg_ent = FMOPL_EG_ENT_HQ; -#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_ARM) +#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_ARM) || defined(__GP32__) if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) { env_bits = FMOPL_ENV_BITS_HQ; eg_ent = FMOPL_EG_ENT_HQ; |