From: <Pi...@us...> - 2010-12-04 18:54:35
|
Revision: 1637 http://cs-sdl.svn.sourceforge.net/cs-sdl/?rev=1637&view=rev Author: Pikablu Date: 2010-12-04 18:54:29 +0000 (Sat, 04 Dec 2010) Log Message: ----------- Fixed bug 3127181 Modified Paths: -------------- branches/experimental/src/Graphics/Primitives/Polygon.cs Modified: branches/experimental/src/Graphics/Primitives/Polygon.cs =================================================================== --- branches/experimental/src/Graphics/Primitives/Polygon.cs 2010-11-21 14:58:26 UTC (rev 1636) +++ branches/experimental/src/Graphics/Primitives/Polygon.cs 2010-12-04 18:54:29 UTC (rev 1637) @@ -193,7 +193,7 @@ } if (fill) { - int result = SdlGfx.filledPolygonRGBA(surface.Handle, this.PositionsX(), this.PositionsY(), this.NumberOfSides, color.R, color.G, color.G, + int result = SdlGfx.filledPolygonRGBA(surface.Handle, this.PositionsX(), this.PositionsY(), this.NumberOfSides, color.R, color.G, color.B, color.A); GC.KeepAlive(this); if (result != (int)SdlFlag.Success) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |