title screen on gold going the wrong dir

This commit is contained in:
bryanthaboi
2026-08-18 15:54:48 -04:00
parent 99806ead25
commit a1ab5e2cff
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -169,7 +169,7 @@ function TitleState:update(_dt)
self.frameCounter = self.frameCounter + 1
self:advanceHooh()
if self.frameCounter % self.cloudScrollEvery == 0 then
self.cloudScroll = (self.cloudScroll + 1) % 160
self.cloudScroll = (self.cloudScroll - 1) % 160
end
self:spawnTrail()
self:stepTrails()