浏览代码

reworked output

Alexander Hendrich 11 年之前
父节点
当前提交
832b7ad7af
共有 1 个文件被更改,包括 2 次插入1 次删除
  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;