]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/cdrom.cpp
Fix configuration dialog crashing.
[virtualjaguar] / src / cdrom.cpp
index 3f419816b5272346abc57622d4ccd532b31db5b1..60522ca28fde3d78a92b66539d0b9a00f9905993 100644 (file)
@@ -17,7 +17,7 @@
 
 #include <string.h>                                                                    // 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);
 }