1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-25 21:38:59 +02:00

small bugfix

This commit is contained in:
mateuszb 2007-12-07 16:54:07 +00:00
parent 4a6ffa94d0
commit c27f2359bd

View File

@ -785,8 +785,8 @@ void CMinimap::showTile(int3 pos)
{
for (int jj=0; jj<ho; jj++)
{
if ((pos.x+ii<this->pos.w-1) && (pos.y+jj<this->pos.h-1))
CSDL_Ext::SDL_PutPixel(FoW[pos.z],pos.x+ii,pos.y+jj,0,0,0,0,128);
if ((pos.x*wo+ii<this->pos.w-1) && (pos.y*ho+jj<this->pos.h-1))
CSDL_Ext::SDL_PutPixel(FoW[pos.z],pos.x*wo+ii,pos.y*ho+jj,0,0,0,0,0);
}
}