Fix VID_BlitLinearScreen's SSE version ignoring width (closes #128)

This commit is contained in:
GenericHeroGuy 2025-09-26 23:59:53 +02:00
parent f60e499f91
commit a08c097a20

View file

@ -498,7 +498,7 @@ static void CV_constextsize_OnChange(void)
void VID_BlitLinearScreen(const UINT8 *srcptr, UINT8 *destptr, INT32 width, INT32 height, size_t srcrowbytes,
size_t destrowbytes)
{
if (srcrowbytes == destrowbytes)
if (srcrowbytes == destrowbytes && srcrowbytes == width)
{
size_t i = srcrowbytes * height;
#if defined(__SSE__)