From 38c0cb3323a2b0581deb9fc8f9a7e8ad5e7956de Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sat, 9 Jun 2018 15:12:42 +0300 Subject: [PATCH] Typo --- Core/apu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/apu.c b/Core/apu.c index cb462d7..4f8f5c6 100644 --- a/Core/apu.c +++ b/Core/apu.c @@ -430,8 +430,8 @@ void GB_apu_init(GB_gameboy_t *gb) { memset(&gb->apu, 0, sizeof(gb->apu)); gb->apu.lf_div = 1; - /* APU glitch: When turning the APU on while DIV's bit 4 (or 5 in double speed mode), the - first DIV/APU event is skipped. */ + /* APU glitch: When turning the APU on while DIV's bit 4 (or 5 in double speed mode) is on, + the first DIV/APU event is skipped. */ if (gb->div_counter & (gb->cgb_double_speed? 0x2000 : 0x1000)) { gb->apu.skip_div_event = true; }