From 88289df32cf00d1f1e0dda39aa6e58b77563eec1 Mon Sep 17 00:00:00 2001 From: Zakk Date: Fri, 26 Feb 2021 00:43:27 -0500 Subject: [PATCH] Remove some old commented lines --- support/megacd/megacdd.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/support/megacd/megacdd.cpp b/support/megacd/megacdd.cpp index 3b25185..3a20965 100644 --- a/support/megacd/megacdd.cpp +++ b/support/megacd/megacdd.cpp @@ -504,9 +504,6 @@ void cdd_t::CommandExec() { stat[6] = BCD(msf.f) >> 4; stat[7] = BCD(msf.f) & 0xF; stat[8] = this->toc.tracks[this->index].type ? 0x04 : 0x00; - - //stat[2] = (cdd.index < this->toc.last) ? BCD(this->index + 1) >> 4 : 0xA; - //stat[3] = (cdd.index < this->toc.last) ? BCD(this->index + 1) & 0xF : 0xA; } else if (stat[1] == 0x00) { int lba = this->lba + 150; LBAToMSF(lba, &msf);