From 995edfb1e8c1c67b6aa9334a1fb9093500253910 Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 27 May 2019 14:20:12 -0700 Subject: [PATCH] Revert "Fix Post Processing in 64-bit Software 3P/4P" This reverts commit a2a63c5e7f03a16b84a2a705b026d996c0bae38b. --- src/v_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v_video.c b/src/v_video.c index 2ba28b43..5b5e3a06 100644 --- a/src/v_video.c +++ b/src/v_video.c @@ -292,7 +292,7 @@ void VID_BlitLinearScreen(const UINT8 *srcptr, UINT8 *destptr, INT32 width, INT3 #ifdef HAVE_VIDCOPY VID_BlitLinearScreen_ASM(srcptr,destptr,width,height,srcrowbytes,destrowbytes); #else - if ((srcrowbytes == destrowbytes) && (srcrowbytes == (size_t)width)) + if (srcrowbytes == destrowbytes) M_Memcpy(destptr, srcptr, srcrowbytes * height); else {