mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Revert "Fix Post Processing in 64-bit Software 3P/4P"
This reverts commit a2a63c5e7f
.
This commit is contained in:
parent
06ddf55709
commit
995edfb1e8
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ void VID_BlitLinearScreen(const UINT8 *srcptr, UINT8 *destptr, INT32 width, INT3
|
||||||
#ifdef HAVE_VIDCOPY
|
#ifdef HAVE_VIDCOPY
|
||||||
VID_BlitLinearScreen_ASM(srcptr,destptr,width,height,srcrowbytes,destrowbytes);
|
VID_BlitLinearScreen_ASM(srcptr,destptr,width,height,srcrowbytes,destrowbytes);
|
||||||
#else
|
#else
|
||||||
if ((srcrowbytes == destrowbytes) && (srcrowbytes == (size_t)width))
|
if (srcrowbytes == destrowbytes)
|
||||||
M_Memcpy(destptr, srcptr, srcrowbytes * height);
|
M_Memcpy(destptr, srcptr, srcrowbytes * height);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue