From 20da194fabc509f27474df764022953782ccbf50 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 25 Jul 2021 19:59:24 -0400 Subject: [PATCH] Log slightly more accurately. --- Machines/Amiga/Chipset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Amiga/Chipset.cpp b/Machines/Amiga/Chipset.cpp index bd46bf1be..f584b69ef 100644 --- a/Machines/Amiga/Chipset.cpp +++ b/Machines/Amiga/Chipset.cpp @@ -66,7 +66,7 @@ void Chipset::perform(const CPU::MC68000::Microcycle &cycle) { } break; case Read(0x006): { const uint16_t position = uint16_t((x_ << 8) | (y_ & 0xff)); - LOG("Read vertical position low " << PADHEX(4) << position); + LOG("Read position low " << PADHEX(4) << position); cycle.set_value16(position); } break;