Browse Source

reworked output

Alexander Hendrich 11 năm trước cách đây
mục cha
commit
832b7ad7af
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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;