Explorar o código

Fixed variable name.

Pawel Jarosz %!s(int64=2) %!d(string=hai) anos
pai
achega
47aebe312d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/timer/repeating_timer/repeating_timer.gui_script

+ 1 - 1
examples/timer/repeating_timer/repeating_timer.gui_script

@@ -18,7 +18,7 @@ function init(self)
 
 	timer.delay(interval, repeating, function()		-- <4>
 		self.count = self.count + 1					-- <5>
-		local p = self.time % 60					-- <6>
+		local p = self.count % 60					-- <6>
 		update_numeric(p)							-- <7>
 		update_radial(p)							-- <8>
 	end)