This commit is contained in:
redblue.pkt
2020-06-10 04:47:39 +02:00
committed by Thilo Graf
parent 8eea7d4841
commit 0a64ccc0e9
2 changed files with 2 additions and 2 deletions

View File

@@ -452,7 +452,7 @@ void CFbAccelARM::blit()
void CFbAccelARM::_blit()
{
if (ioctl(fd, FBIO_BLIT) < 0)
printf("FBIO_BLIT");
printf("FBIO_BLIT failed\n");
}
void CFbAccelARM::paintRect(const int x, const int y, const int dx, const int dy, const fb_pixel_t col)

View File

@@ -453,7 +453,7 @@ void CFbAccelMIPS::blit()
void CFbAccelMIPS::_blit()
{
if (ioctl(fd, FBIO_BLIT) < 0)
printf("FBIO_BLIT");
printf("FBIO_BLIT failed\n");
}
void CFbAccelMIPS::paintRect(const int x, const int y, const int dx, const int dy, const fb_pixel_t col)