We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbf36a3 commit d3fbbf9Copy full SHA for d3fbbf9
src/SCRIPTS/BF/PAGES/pos_osd.lua
@@ -143,9 +143,9 @@ return {
143
local profiles = bit32.extract(inputVal, 11, 3)
144
local fieldPos = bit32.extract(inputVal, 0, 11)
145
local fieldFirstProfile = bit32.band(bit32.rshift(profiles, 0), 1)
146
- local fieldThirdProfile = bit32.band(bit32.rshift(profiles, 1), 1)
147
- local fieldFourthProfile = bit32.band(bit32.rshift(profiles, 2), 1)
148
- return fieldPos, fieldFirstProfile, fieldThirdProfile, fieldFourthProfile
+ local FieldSecondProfile = bit32.band(bit32.rshift(profiles, 1), 1)
+ local FieldThirdProfile = bit32.band(bit32.rshift(profiles, 2), 1)
+ return fieldPos, fieldFirstProfile, FieldSecondProfile, FieldThirdProfile
149
end,
150
updateItems = function(self)
151
if self.fields[1].value ~= items[address + 1]["address"] then
0 commit comments