1
0
mirror of https://github.com/ptitSeb/Serious-Engine synced 2025-04-02 20:20:05 +02:00

Fix a nasty typo

This commit is contained in:
ptitSeb 2016-04-07 09:10:09 +02:00
parent 3ec4d484e2
commit 0c16613056

@ -1998,7 +1998,7 @@ __forceinline void CLayerMixer::FillShadowLayer( COLOR col)
{
#if (defined USE_PORTABLE_C)
DWORD* dst = (DWORD*)lm_pulShadowMap;
int n = lm_pixCanvasSizeV*lm_pixCanvasSizeV;
int n = lm_pixCanvasSizeU*lm_pixCanvasSizeV;
DWORD color = __builtin_bswap32(col);
while(n--) {*(dst++)=color;}
#elif (defined __MSVC_INLINE__)