Quieting a warning about small integer size on OS X.

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87142 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\MaddTheSane_cp 2013-09-12 17:50:41 +00:00
parent 6d34781f49
commit 19489aa870
1 changed files with 2 additions and 1 deletions

View File

@ -627,7 +627,8 @@ void BlitScreen16NS(unsigned char * surf,long x,long y)
if(PSXDisplay.RGB24)
{
unsigned char * pD;unsigned int startxy;
unsigned char * pD;
size_t startxy;
surf+=PreviousPSXDisplay.Range.x0<<2;