1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 19:35:49 +00:00

gcc-4 compile fix: invalid lvalue in assignment

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13830 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2004-10-31 18:05:10 +00:00
parent 8aa920c937
commit eee1e83c8a

View File

@ -747,7 +747,7 @@ int page;
mpi->stride[0] = mode_stride;
mpi->planes[0] = PageStore[page].vbase +
y_pos*mode_stride + (x_pos*mpi->bpp)/8;
(int)mpi->priv=page;
mpi->priv=(int)page;
if(verbose>2)
printf("vo_svga: direct render allocated! page=%d\n",page);
return(VO_TRUE);