Browse Source

reworked output

Alexander Hendrich 11 years ago
parent
commit
832b7ad7af
1 changed files with 2 additions and 1 deletions
  1. 2 1
      bbiwarg/Graphics/OutputWindow.cs

+ 2 - 1
bbiwarg/Graphics/OutputWindow.cs

@@ -126,7 +126,8 @@ namespace bbiwarg.Graphics
                     //edgeTexture
                     red = green = blue = 0;
                     if (videoHandle.isEdgeAt(x, y)) blue = Int16.MaxValue;
-                    if (videoHandle.isFingerPointAt(x, y)) red = green = Int16.MaxValue;
+                    else if (videoHandle.isFingerPointAt(x, y)) green = Int16.MaxValue;
+                    else if (videoHandle.isPossibleFingerPointAt(x, y)) red = Int16.MaxValue;
 
                     edgeTextureData[index] = red;
                     edgeTextureData[index + 1] = green;