Skip to content

Commit

Permalink
global to local fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jousway committed Sep 15, 2022
1 parent 1b1f666 commit ed3dc91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/Wheel.DDR5thMixWheel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ local function MoveSelection(self,offset,Songs)
for i = 1,13 do

-- Offset for the wheel items.
off = i + XOffset
local off = i + XOffset

-- Stay withing limits.
while off > 13 do off = off-13 end
Expand Down
2 changes: 1 addition & 1 deletion Modules/Wheel.PPPWheel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ local function MoveSelection(self,offset,Songs)
for i = 1,10 do

-- Offset for the wheel items.
off = i + XOffset
local off = i + XOffset

-- Stay withing limits.
while off > 10 do off = off-10 end
Expand Down

0 comments on commit ed3dc91

Please sign in to comment.