diff options
author | Johannes Schickel | 2006-07-29 23:44:09 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-07-29 23:44:09 +0000 |
commit | 43fbc9eb816417134fb775631a67c9cd61226a38 (patch) | |
tree | 876ab2b63de800cea78cfc72244fd15405c5b55b | |
parent | 1d52f836dc8eadcff83abee0dbe0fd9c985467a9 (diff) | |
download | scummvm-rg350-43fbc9eb816417134fb775631a67c9cd61226a38.tar.gz scummvm-rg350-43fbc9eb816417134fb775631a67c9cd61226a38.tar.bz2 scummvm-rg350-43fbc9eb816417134fb775631a67c9cd61226a38.zip |
Adding comment about forced MQ on small devices.
svn-id: r23620
-rw-r--r-- | sound/fmopl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp index 39fb9da6f8..3161e6cc01 100644 --- a/sound/fmopl.cpp +++ b/sound/fmopl.cpp @@ -1189,6 +1189,9 @@ FM_OPL *makeAdlibOPL(int rate) { env_bits = FMOPL_ENV_BITS_LQ; eg_ent = FMOPL_EG_ENT_LQ; } + // TODO: add a comment why we foce to MQ, + // but make a check what mode the user specified. + // Looks a bit pointless... env_bits = FMOPL_ENV_BITS_MQ; eg_ent = FMOPL_EG_ENT_MQ; #endif |