diff -r 697728ffe39f -r 2886dafa5bcf hedgewars/uStore.pas --- a/hedgewars/uStore.pas Sun Jan 27 18:39:02 2008 +0000 +++ b/hedgewars/uStore.pas Sun Jan 27 19:29:00 2008 +0000 @@ -249,10 +249,10 @@ WriteLnToConsole(msgOK); val(s, cExplosionBorderColor, c); TryDo(c = 0, 'Theme data corrupted', true); - cExplosionBorderColor:= SDL_MapRGB(LandSurface^.format, - cExplosionBorderColor shr 16, - cExplosionBorderColor shr 8, - cExplosionBorderColor and $FF); + cExplosionBorderColor:= (cExplosionBorderColor shr 16) or + (cExplosionBorderColor and $FF) or + (cExplosionBorderColor shl 16) or + $FF000000 end; begin