diff options
author | Simon Howard | 2015-05-30 13:04:56 -0400 |
---|---|---|
committer | Simon Howard | 2015-05-30 13:04:56 -0400 |
commit | 0e90c19ca717298f4f3b83dfd075cdf0c458de32 (patch) | |
tree | 09fae977fd34c03759d5c90e7daf2a087e6e7756 /src/m_config.c | |
parent | 5082f14944442344030d66f6fbdf86a75a1c1c70 (diff) | |
parent | 1e516e34911d3a95479c303fe26b59f20e618252 (diff) | |
download | chocolate-doom-0e90c19ca717298f4f3b83dfd075cdf0c458de32.tar.gz chocolate-doom-0e90c19ca717298f4f3b83dfd075cdf0c458de32.tar.bz2 chocolate-doom-0e90c19ca717298f4f3b83dfd075cdf0c458de32.zip |
Merge pull request #545 from khokh2001/opl3_mode
opl: Add OPL3 mode.
The DMX library had limited support for the features of the OPL3 chip,
enabled by setting the DMXOPTIONS variable. This reproduces the OPL3
support in Chocolate Doom's OPL playback and emulation layer.
Huge thanks to Alexey Khokholov for researching and developing this.
This fixes #470.
Diffstat (limited to 'src/m_config.c')
-rw-r--r-- | src/m_config.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/m_config.c b/src/m_config.c index ad539a7f..3ec0b633 100644 --- a/src/m_config.c +++ b/src/m_config.c @@ -824,6 +824,11 @@ static default_t extra_defaults_list[] = CONFIG_VARIABLE_INT_HEX(opl_io_port), //! + // OPL chip type. + // + CONFIG_VARIABLE_INT(opl_type), + + //! // @game doom heretic strife // // If non-zero, the ENDOOM text screen is displayed when exiting the |