Browse Source

Removed extra semicolon

Marco Bellan 9 years ago
parent
commit
560f71734d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Data/Raw/Editor/Includes/PickingAlphaCull.bslinc

+ 2 - 2
Data/Raw/Editor/Includes/PickingAlphaCull.bslinc

@@ -149,9 +149,9 @@ Technique : base("PickingAlphaCull") =
 				vec4 color = texture2D(mainTexture, texcoord0);
 				if(color.a < alphaCutoff)
 					discard;
-				normalsColor = (bs_outNorm + vec4(1,1,1,0)) / 2;;
+				normalsColor = (bs_outNorm + vec4(1,1,1,0)) / 2;
 				fragColor = colorIndex;
 			}
 		};
 	};
-};
+};