From 83e1a9c8fc15bb32f77a74d71ac16a4d9338a20b Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 19 Nov 2015 16:49:49 +1100 Subject: [PATCH] Remove the testing code I accidentally left in. --- ClassicalSharp/Entities/Player.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ClassicalSharp/Entities/Player.cs b/ClassicalSharp/Entities/Player.cs index e54f31329..93cb8900c 100644 --- a/ClassicalSharp/Entities/Player.cs +++ b/ClassicalSharp/Entities/Player.cs @@ -96,11 +96,7 @@ namespace ClassicalSharp { row += sizeX; for( int x = 0; x < sizeX; x++ ) { int pixel = row[x]; - Console.WriteLine( pixel.ToString( "X8" ) ); - if( pixel == fullWhite ) row[x] = 0; - if( pixel == fullBlack ) row[x] = 0; - Console.WriteLine( row[x].ToString( "X8" ) ); - Console.WriteLine( "====" ); + if( pixel == fullWhite || pixel == fullBlack ) row[x] = 0; } } }