Skip to content

Commit

Permalink
Update pos_osd.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
druckgott authored Dec 20, 2022
1 parent fbf36a3 commit d3fbbf9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SCRIPTS/BF/PAGES/pos_osd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ return {
local profiles = bit32.extract(inputVal, 11, 3)
local fieldPos = bit32.extract(inputVal, 0, 11)
local fieldFirstProfile = bit32.band(bit32.rshift(profiles, 0), 1)
local fieldThirdProfile = bit32.band(bit32.rshift(profiles, 1), 1)
local fieldFourthProfile = bit32.band(bit32.rshift(profiles, 2), 1)
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
end,
updateItems = function(self)
if self.fields[1].value ~= items[address + 1]["address"] then
Expand Down

0 comments on commit d3fbbf9

Please # to comment.