From 5bfedff8d1a209cb8b254970c59fa1bf0bdf3725 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 16 Jul 2021 17:32:05 -0400 Subject: [PATCH] Mutate dangling printf to a LOG. --- Machines/MasterSystem/MasterSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/MasterSystem/MasterSystem.cpp b/Machines/MasterSystem/MasterSystem.cpp index 5b81fbfc8..8e660cc9d 100644 --- a/Machines/MasterSystem/MasterSystem.cpp +++ b/Machines/MasterSystem/MasterSystem.cpp @@ -303,7 +303,7 @@ class ConcreteMachine: case 0x00: // i.e. even ports less than 0x40. if(is_master_system(model_)) { // TODO: Obey the RAM enable. - printf("Memory control: %02x\n", memory_control_); + LOG("Memory control: " << PADHEX(2) << memory_control_); memory_control_ = *cycle.value; page_cartridge(); }