Skip to content
Snippets Groups Projects
Commit 995edfb1 authored by James R.'s avatar James R.
Browse files

Revert "Fix Post Processing in 64-bit Software 3P/4P"

This reverts commit a2a63c5e.
parent 06ddf557
No related branches found
No related tags found
1 merge request!2lol xd
......@@ -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
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment