diff -abBdpuNPr --exclude='*.svn' irrlicht-svn-ss/trunk/include/SColor.h Irrlicht_starsonata/include/SColor.h --- irrlicht-svn-ss/trunk/include/SColor.h 2007-07-26 02:11:22.000000000 +0200 +++ Irrlicht_starsonata/include/SColor.h 2008-06-13 19:09:30.000000000 +0200 @@ -224,7 +224,7 @@ namespace video //! Sets the alpha component of the Color. The alpha component //! defines how transparent a color should be. //! \param a: Has to be a value between 0 and 255. - //! 0 means not transparent (opaque), 255 means fully transparent. + //! 255 means not transparent (opaque), 0 means fully transparent. inline void setAlpha(u32 a) { color = ((a & 0xff)<<24) | (color & 0x00ffffff); } //! Sets the red component of the Color.