[CHG] Fixed the rotation's handle of tiled images.

This commit is contained in:
Xane 2009-03-09 00:47:58 +00:00
parent a6df7ea613
commit e4152ff067

View file

@ -288,6 +288,7 @@ void GRRLIB_InitTileSet(struct GRRLIB_texImg *tex, unsigned int tilew, unsigned
if (tileh) // Avoid division by zero if (tileh) // Avoid division by zero
tex->nbtileh = tex->h / tileh; tex->nbtileh = tex->h / tileh;
tex->tilestart = tilestart; tex->tilestart = tilestart;
tex->tiledtex = true;
GRRLIB_SetHandle( tex, 0, 0 ); GRRLIB_SetHandle( tex, 0, 0 );
} }