Skip to content

Commit 94284a7

Browse files
committed
Small bug fix.
1 parent 3b925a9 commit 94284a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/lib/state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def execute(self):
148148
self.__capture.capture(self.__settings.capture_width, self.__settings.capture_height)
149149

150150
#limit the maximum number of frames sent to hyperion
151-
xbmc.sleep( int(1. / self.__settings.framerate) * 1000 )
151+
xbmc.sleep( int(1. / self.__settings.framerate * 1000) )
152152

153153
return self
154154

0 commit comments

Comments
 (0)