control: 15bpp mode is big endian.

This commit is contained in:
joevt 2024-01-29 17:33:01 -08:00 committed by dingusdev
parent 5afe1f1a25
commit d4ee43179c

View File

@ -444,7 +444,7 @@ void ControlVideo::enable_display()
break;
case 16:
this->convert_fb_cb = [this](uint8_t *dst_buf, int dst_pitch) {
this->convert_frame_15bpp(dst_buf, dst_pitch);
this->convert_frame_15bpp_BE(dst_buf, dst_pitch);
};
break;
case 32: