win32: remove bogus height reduction

This commit is contained in:
OV2 2018-10-25 20:10:34 +02:00
parent e665f339f0
commit 63126dfc48
1 changed files with 0 additions and 2 deletions

View File

@ -787,8 +787,6 @@ void RenderMergeHires(void *src, int srcPitch , void* dst, int dstPitch, unsigne
void RenderPlain (SSurface Src, SSurface Dst, RECT *rect)
{
SetRect(rect, Src.Width, Src.Height, 1);
if(Src.Height > SNES_HEIGHT_EXTENDED)
rect->bottom -= (GUI.HeightExtend?0:15);
const uint32 srcHeight = (rect->bottom - rect->top);
uint16 *lpSrc = reinterpret_cast<uint16 *>(Src.Surface);