control: Update little-endian error message.

This commit is contained in:
joevt 2024-02-02 02:15:37 -08:00 committed by dingusdev
parent 3e347746f9
commit ca9657baf1
1 changed files with 2 additions and 2 deletions

View File

@ -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;