control: Don't abort when setting little endian.

If this gets set accidentally, (such as while playing in Open Firmware), allow the user to change it back.
This commit is contained in:
joevt 2024-02-02 01:49:42 -08:00 committed by dingusdev
parent b5987afaa6
commit 3e347746f9
1 changed files with 1 additions and 2 deletions

View File

@ -531,8 +531,7 @@ void ControlVideo::write(uint32_t rgn_start, uint32_t offset, uint32_t value, in
}
this->enables = value & 0xFFF;
if (this->enables & FB_ENDIAN_LITTLE)
ABORT_F("%s: little-endian framebuffer is not implemented yet",
this->name.c_str());
LOG_F(ERROR, "%s: little-endian framebuffer is not implemented yet", this->name.c_str());
break;
case ControlRegs::GSC_DIVIDE:
this->clock_divider = value & 3;