Explorar o código

Fixed typo, alpha wasn't being used

line 171: `Self.a=1` instead of using the optionally passed a.
Ghouly The Ghost %!s(int64=6) %!d(string=hai) anos
pai
achega
eeb4459fcd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      modules/std/graphics/color.monkey2

+ 1 - 1
modules/std/graphics/color.monkey2

@@ -168,7 +168,7 @@ Struct Color
 		Self.r=i
 		Self.g=i
 		Self.b=i
-		Self.a=1
+		Self.a=a
 	End
 	
 	Method New( r:Float,g:Float,b:Float,a:Float=1 )