this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #1783 from nesbox/joshgoebel-patch-1

Typo: Correct variable was not getting updated

authored by

Vadim Grigoruk and committed by
GitHub
ee27d488 23455834

+1 -1
+1 -1
demos/bunny/luamark.lua
··· 36 36 37 37 function Bunny:update() 38 38 self.x = self.x + self.speedX 39 - self.y = self.x + self.speedY 39 + self.y = self.y + self.speedY 40 40 41 41 if (self.x + self.width > screenWidth) then 42 42 self.x = screenWidth - self.width