Patch 13787 (ckain);

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82713 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\edgbla_cp 2013-02-04 14:00:24 +00:00
parent 10c2e26d00
commit 1d525a69e2
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ df Copyright: (c) 2005 Ryan Schultz
PCSX-Reloaded Authors/Contributors: avlex (Help on xcode project)
Benoît Gschwind (MDEC decoder improvements)
ckain (Various bugfixes)
Dario (Various bugfixes)
edgbla (Root counters, various core/plugin fixes)
Firnis (GTE code from PCSX-Revolution Project)

View File

@ -589,7 +589,7 @@ void primBlkFill(unsigned char * baseAddr)
short sX = GETLEs16(&sgpuData[2]);
short sY = GETLEs16(&sgpuData[3]);
short sW = GETLEs16(&sgpuData[4]) & 0x3ff;
short sH = GETLEs16(&sgpuData[5]) & 0x3ff;
short sH = GETLEs16(&sgpuData[5]) & iGPUHeightMask;
sW = (sW+15) & ~15;