Quellcode durchsuchen

fix: vpu_live grid count -1 (> - >=)

micha vor 2 Jahren
Ursprung
Commit
8ac1f11043
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      vpu/vpu_live.py

+ 1 - 1
vpu/vpu_live.py

@@ -543,7 +543,7 @@ def init_grid():
         if i >= _x and i%_x == 0:
             x=0
             y+=1
-        if y > _y:
+        if y >= _y:
             break