aboutsummaryrefslogtreecommitdiff
path: root/backends/midi
diff options
context:
space:
mode:
authorJamieson Christian2003-07-11 10:23:13 +0000
committerJamieson Christian2003-07-11 10:23:13 +0000
commit378856a693942f7a6fa71c951bcba003d2d5f0c0 (patch)
tree847cf85992c4547d925efd95d1aa72f0c274106f /backends/midi
parent88c2ef94d2ce7569ebb5c85092602391703ea6d8 (diff)
downloadscummvm-rg350-378856a693942f7a6fa71c951bcba003d2d5f0c0.tar.gz
scummvm-rg350-378856a693942f7a6fa71c951bcba003d2d5f0c0.tar.bz2
scummvm-rg350-378856a693942f7a6fa71c951bcba003d2d5f0c0.zip
Post FMOPL-reversion cleanup.
svn-id: r8906
Diffstat (limited to 'backends/midi')
-rw-r--r--backends/midi/adlib.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/backends/midi/adlib.cpp b/backends/midi/adlib.cpp
index 434e6f1f69..06a800603e 100644
--- a/backends/midi/adlib.cpp
+++ b/backends/midi/adlib.cpp
@@ -849,8 +849,6 @@ int MidiDriver_ADLIB::open() {
_adlib_reg_cache = (byte *)calloc(256, 1);
// We need to emulate one YM3812 chip
-// if (0 != YM3812Init(1, 3579545, g_system->property(OSystem::PROP_GET_SAMPLE_RATE, 0)))
-// error("Error initialising YM3812 sound chip emulation");
int env_bits = g_system->property(OSystem::PROP_GET_FMOPL_ENV_BITS, NULL);
int eg_ent = g_system->property(OSystem::PROP_GET_FMOPL_EG_ENT, NULL);
OPLBuildTables((env_bits ? env_bits : FMOPL_ENV_BITS_HQ), (eg_ent ? eg_ent : FMOPL_EG_ENT_HQ));
@@ -991,8 +989,6 @@ void MidiDriver_ADLIB::adlib_write(byte port, byte value) {
return;
_adlib_reg_cache[port] = value;
-// YM3812Write(0, 0, port);
-// YM3812Write(0, 1, value);
OPLWriteReg (_opl, port, value);
}
@@ -1003,7 +999,6 @@ void MidiDriver_ADLIB::generate_samples(int16 *data, int len) {
step = len;
if (step > _next_tick)
step = _next_tick;
-// YM3812UpdateOne(0, data, step);
YM3812UpdateOne (_opl, data, step);
_next_tick -= step;