From 5154bc72d53f635872b1698d9fff2001b51d3326 Mon Sep 17 00:00:00 2001 From: OBattler Date: Tue, 4 Aug 2020 07:38:01 +0200 Subject: [PATCH] Fixed a line in snd_opl.c. --- src/sound/snd_opl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/snd_opl.c b/src/sound/snd_opl.c index 01d95fce2..0547c19c2 100644 --- a/src/sound/snd_opl.c +++ b/src/sound/snd_opl.c @@ -103,7 +103,7 @@ timer_control(opl_t *dev, int tmr, int start) opl_log("Loading timer %i count: %02X = %02X\n", tmr, dev->timer_cur_count[tmr], dev->timer_count[tmr]); dev->timer_cur_count[tmr] = dev->timer_count[tmr]; if (dev->flags & FLAG_OPL3) - timer_tick(dev, tmr); /* Per the YMF262 datasheet, OPL3 starts counting immediately, unlike OPL2. */ + timer_tick(dev, tmr); /* Per the YMF 262 datasheet, OPL3 starts counting immediately, unlike OPL2. */ else timer_on_auto(&dev->timers[tmr], (tmr == 1) ? 320.0 : 80.0); } else