Remove quoted code

This commit is contained in:
Andy Vandijck
2025-08-19 15:26:12 +02:00
parent c334e3ffca
commit fe08f4d326
2 changed files with 0 additions and 13 deletions

View File

@@ -1800,19 +1800,6 @@ void systemDrawScreen(void)
if (ifb_filter_func)
ifb_filter_func(g_pix, pitch, systemWidth, systemHeight);
/*#ifdef FRONTEND_SUPPORT_BGR1555
for (int y = 0; y < systemHeight; y++) {
for (int x = 0; x < systemWidth, x++) {
uint16_t r = (g_pix[(y * systemWidth) + x] & 0x0x1F);
uint16_t g = (g_pix[(y * systemWidth) + x] & 0x7E0) >> 5;
uint16_t b = (g_pix[(y * systemWidth) + x] & 0x7C00) >> 10;
g_pix[(y * systemWidth) + x] = (b << 11) | (g << 5) | r;
}
}
#endif*/
video_cb(g_pix, systemWidth, systemHeight, pitch);
}

Binary file not shown.