Skip to content

Commit ed3dc91

Browse files
committed
global to local fixes.
1 parent 1b1f666 commit ed3dc91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Modules/Wheel.DDR5thMixWheel.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ local function MoveSelection(self,offset,Songs)
167167
for i = 1,13 do
168168

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

172172
-- Stay withing limits.
173173
while off > 13 do off = off-13 end

Modules/Wheel.PPPWheel.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ local function MoveSelection(self,offset,Songs)
153153
for i = 1,10 do
154154

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

158158
-- Stay withing limits.
159159
while off > 10 do off = off-10 end

0 commit comments

Comments
 (0)