Skip copying unnecessary byte during blitting

This commit is contained in:
John Lorentzson 2025-04-06 22:56:12 +02:00
parent 6ab4984350
commit c7dd1520c6

View file

@ -183,7 +183,8 @@ ATTRIBUTE_HOT void RenderBackend_Blit(RenderBackend_Surface *source_surface, con
*destination_pointer++ = *source_pointer++;
*destination_pointer++ = *source_pointer++;
*destination_pointer++ = *source_pointer++;
*destination_pointer++ = *source_pointer++;
destination_pointer++;
source_pointer++;
}
}
}