aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2007-12-19 14:03:53 +0000
committerMax Horn2007-12-19 14:03:53 +0000
commit00ce6ac98dc233cd73a3bdf4355a72f375c64fc8 (patch)
tree5b5a95e5e1398f45400d0bd163174fe08796a9b5 /sound
parent272f02e001e4138e3a8c20c8eaa514462b849818 (diff)
downloadscummvm-rg350-00ce6ac98dc233cd73a3bdf4355a72f375c64fc8.tar.gz
scummvm-rg350-00ce6ac98dc233cd73a3bdf4355a72f375c64fc8.tar.bz2
scummvm-rg350-00ce6ac98dc233cd73a3bdf4355a72f375c64fc8.zip
Patch #1853322: Patch for Atari ST/FreeMint
svn-id: r29906
Diffstat (limited to 'sound')
-rw-r--r--sound/fmopl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp
index b2e1ee3aee..8e96e62b64 100644
--- a/sound/fmopl.cpp
+++ b/sound/fmopl.cpp
@@ -33,7 +33,7 @@
#include "sound/fmopl.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__) || defined (__MINT__)
#include "common/config-manager.h"
#endif
@@ -1171,7 +1171,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_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__) || defined (__MINT__)
if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) {
env_bits = FMOPL_ENV_BITS_HQ;
eg_ent = FMOPL_EG_ENT_HQ;