summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFXVideo/macsrc/PluginGLView.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-12 17:50:41 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-12 17:50:41 +0000
commit19489aa870218c1628a6339a00e2c3bd7b4319d1 (patch)
treede2eaf9e725329ee37372c7f175798aa3e857721 /macosx/plugins/DFXVideo/macsrc/PluginGLView.m
parent6d34781f490cb921edff2f822b87117c32bc9fc1 (diff)
downloadpcsxr-19489aa870218c1628a6339a00e2c3bd7b4319d1.tar.gz
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
Diffstat (limited to 'macosx/plugins/DFXVideo/macsrc/PluginGLView.m')
-rwxr-xr-xmacosx/plugins/DFXVideo/macsrc/PluginGLView.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/plugins/DFXVideo/macsrc/PluginGLView.m b/macosx/plugins/DFXVideo/macsrc/PluginGLView.m
index 592d57f2..fee2eb54 100755
--- a/macosx/plugins/DFXVideo/macsrc/PluginGLView.m
+++ b/macosx/plugins/DFXVideo/macsrc/PluginGLView.m
@@ -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;