From 9b914fbfe62ffab10a3536e6323fa587fe363c9f Mon Sep 17 00:00:00 2001 From: angelosa Date: Mon, 30 Dec 2024 17:20:31 +0100 Subject: amiga/amiga_m.cpp: couple of logging setups --- src/mame/amiga/amiga_m.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mame/amiga/amiga_m.cpp b/src/mame/amiga/amiga_m.cpp index 0c1ecad4f61..68a6336e659 100644 --- a/src/mame/amiga/amiga_m.cpp +++ b/src/mame/amiga/amiga_m.cpp @@ -919,7 +919,8 @@ void amiga_state::blitter_setup() /* is there another blitting in progress? */ if (CUSTOM_REG(REG_DMACON) & 0x4000) { - logerror("%s - This program is playing tricks with the blitter\n", machine().describe_context() ); + popmessage("In-flight blitter_setup() call, ignored"); + //logerror("%s - This program is playing tricks with the blitter\n", machine().describe_context() ); return; } @@ -1412,7 +1413,9 @@ void amiga_state::custom_chip_w(offs_t offset, uint16_t data) return; case REG_DSKDAT: - popmessage("DSKDAT W %04x",data); + // WHDLoad inits with a 0 here, not enough for actual use case. + if (data) + popmessage("DSKDAT W %04x",data); break; case REG_DSKSYNC: -- cgit v1.2.3