Fix signed/unsigned warning.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3703 dfc29bdd-3216-0410-991c-e03cc46cb475
master
hybrid 2011-05-05 22:46:34 +00:00
parent 1db83c000e
commit 44c9d5393f
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ static void executeBlit_TextureCopy_24_to_16( const SBlitJob * job )
for ( u32 dy = 0; dy != h; ++dy )
{
const u8* s = src;
for ( u32 dx = 0; dx != job->width; ++dx )
for ( u32 dx = 0; dx != w; ++dx )
{
dst[dx] = video::RGBA16(s[0], s[1], s[2]);
s += 3;