X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcdrom.cpp;h=60522ca28fde3d78a92b66539d0b9a00f9905993;hb=6f25f63a18153bc2adc49c5f9a3862c2760716df;hp=c45a8f0306c06c5970a8a52bbd98e4b1daa4e45e;hpb=5da604521611a960140b58a2fb0f236c65610b70;p=virtualjaguar diff --git a/src/cdrom.cpp b/src/cdrom.cpp index c45a8f0..60522ca 100644 --- a/src/cdrom.cpp +++ b/src/cdrom.cpp @@ -3,10 +3,10 @@ // // Originally by David Raingeard // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) -// Extensive rewrites/cleanups/fixes by James L. Hammons +// Extensive rewrites/cleanups/fixes by James Hammons // (C) 2010 Underground Software // -// JLH = James L. Hammons +// JLH = James Hammons // // Who When What // --- ---------- ------------------------------------------------------------- @@ -17,7 +17,7 @@ #include // For memset, etc. //#include "jaguar.h" // For GET32/SET32 macros -#include "m68k.h" +//#include "m68k.h" //??? //#include "memory.h" #include "cdintf.h" // System agnostic CD interface functions #include "log.h" @@ -841,8 +841,9 @@ if (cdBufPtr % 32 == 30) bool ButchIsReadyToSend(void) { +#ifdef LOG_CDROM_VERBOSE WriteLog("Butch is%s ready to send...\n", cdRam[I2CNTRL + 3] & 0x02 ? "" : " not"); - +#endif return (cdRam[I2CNTRL + 3] & 0x02 ? true : false); }