1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Compile and warning fixes.

This commit is contained in:
Frank Zago
2010-08-06 02:47:43 +00:00
parent 6928f850b9
commit 904f764628

View File

@@ -1014,11 +1014,10 @@ int CSDL_Ext::blit8bppAlphaTo24bpp(const SDL_Surface * src, const SDL_Rect * src
g8 = (g5 << (8 - gbit)) | (g5 >> (2*gbit - 8)),
b8 = (b5 << (8 - bbit)) | (b5 >> (2*bbit - 8));
ColorPutter<2, 0>::PutColor((Uint8*)p,
((r8-tbc.r)*tbc.unused) >> 8 + tbc.r,
((g8-tbc.g)*tbc.unused) >> 8 + tbc.g,
((b8-tbc.b)*tbc.unused) >> 8 + tbc.b);
ColorPutter<2, 0>::PutColor(p,
(((r8-tbc.r)*tbc.unused) >> 8) + tbc.r,
(((g8-tbc.g)*tbc.unused) >> 8) + tbc.g,
(((b8-tbc.b)*tbc.unused) >> 8) + tbc.b);
break;
}
}