diff options
author | Cameron Cawley | 2018-11-03 19:00:24 +0000 |
---|---|---|
committer | David Turner | 2018-11-04 21:38:45 +0000 |
commit | 79a4e3f8131fa8e3f2b3041e2a440236093cb76d (patch) | |
tree | af2c09a29e1bc3b5201b101718bc532493e6a59e /audio | |
parent | e4ff1929aa7823c3716a9ea48e1f8a9524154742 (diff) | |
download | scummvm-rg350-79a4e3f8131fa8e3f2b3041e2a440236093cb76d.tar.gz scummvm-rg350-79a4e3f8131fa8e3f2b3041e2a440236093cb76d.tar.bz2 scummvm-rg350-79a4e3f8131fa8e3f2b3041e2a440236093cb76d.zip |
BACKENDS: Remove references to the GP32 backend
Diffstat (limited to 'audio')
-rw-r--r-- | audio/softsynth/opl/mame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/softsynth/opl/mame.cpp b/audio/softsynth/opl/mame.cpp index cba95422fc..0903f335cf 100644 --- a/audio/softsynth/opl/mame.cpp +++ b/audio/softsynth/opl/mame.cpp @@ -40,7 +40,7 @@ #include "common/textconsole.h" #include "common/util.h" -#if defined(_WIN32_WCE) || defined(__SYMBIAN32__) || defined(__GP32__) || defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__) +#if defined(_WIN32_WCE) || defined(__SYMBIAN32__) || defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__) #include "common/config-manager.h" #endif @@ -1233,7 +1233,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(__GP32__) || defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__) +#if defined(_WIN32_WCE) || defined(__SYMBIAN32__) || defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__) if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) { env_bits = FMOPL_ENV_BITS_HQ; eg_ent = FMOPL_EG_ENT_HQ; |