From ca9657baf1da99b5bc7e34e927d7159175487ebb Mon Sep 17 00:00:00 2001 From: joevt Date: Fri, 2 Feb 2024 02:15:37 -0800 Subject: [PATCH] control: Update little-endian error message. --- devices/video/control.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/video/control.cpp b/devices/video/control.cpp index 203c043..47eb2a4 100644 --- a/devices/video/control.cpp +++ b/devices/video/control.cpp @@ -277,7 +277,7 @@ uint32_t ControlVideo::read(uint32_t rgn_start, uint32_t offset, int size) } // if not VRAM_WIDE_MODE } - LOG_F(ERROR, "%s: read from unmapped aperture address 0x%X", this->name.c_str(), + LOG_F(ERROR, "%s: read from little-endian aperture address 0x%X", this->name.c_str(), this->vram_base + offset); return 0; } @@ -417,7 +417,7 @@ void ControlVideo::write(uint32_t rgn_start, uint32_t offset, uint32_t value, in } // switch } // if not VRAM_WIDE_MODE } else { - LOG_F(ERROR, "%s: write to unmapped aperture address 0x%X", this->name.c_str(), + LOG_F(ERROR, "%s: write to little-endian aperture address 0x%X", this->name.c_str(), this->vram_base + offset); } return;