|
@@ -345,6 +345,8 @@ class Vopen():
|
|
|
|
|
|
def draw(self,wn=None):
|
|
|
|
|
|
+ if self.dim <= 1:
|
|
|
+ return
|
|
|
|
|
|
__xw = int(370*self.scale/255)
|
|
|
__yw = int(235*self.scale/255)
|
|
@@ -1441,6 +1443,7 @@ def draw_video(VIDEO):
|
|
|
global videplayer
|
|
|
i = 0
|
|
|
|
|
|
+
|
|
|
for count in VIDEO:
|
|
|
cpan = 0
|
|
|
ctilt = 0
|
|
@@ -1515,24 +1518,19 @@ def draw_video(VIDEO):
|
|
|
video1.next()
|
|
|
i += 1
|
|
|
|
|
|
+
|
|
|
+
|
|
|
i=0
|
|
|
for count in VIDEO:
|
|
|
video1 = videoplayer[i]
|
|
|
- if cdim:
|
|
|
-
|
|
|
- video1.draw(window)
|
|
|
+ video1.draw(window)
|
|
|
i+=1
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
i=0
|
|
|
for count in VIDEO:
|
|
|
video1 = videoplayer[i]
|
|
|
- if 1:
|
|
|
-
|
|
|
- video1.overlay(window,"run")
|
|
|
+ video1.overlay(window,"run")
|
|
|
i += 1
|
|
|
|
|
|
|
|
@@ -1817,7 +1815,7 @@ def main():
|
|
|
pygame.display.flip()
|
|
|
event()
|
|
|
|
|
|
- window.fill((10,0,20))
|
|
|
+ window.fill((10,0,30))
|
|
|
calc_fps()
|
|
|
draw_overlay()
|
|
|
|
|
@@ -1850,6 +1848,7 @@ def main():
|
|
|
|
|
|
if options.countdown:
|
|
|
draw_counter(COUNTER)
|
|
|
+
|
|
|
pointer.draw(0,pm_wy)
|
|
|
spos = [0,0,0,0]
|
|
|
if PIXEL_MAPPING >= 1:
|