Commit ef3a0701 authored by salix5's avatar salix5

fix aux.SequenceToGlobal()

parent 25bcf78b
...@@ -2637,13 +2637,13 @@ function Auxiliary.SequenceToGlobal(p,loc,seq) ...@@ -2637,13 +2637,13 @@ function Auxiliary.SequenceToGlobal(p,loc,seq)
end end
if loc==LOCATION_MZONE then if loc==LOCATION_MZONE then
if seq<=6 then if seq<=6 then
return 0x1<<(16*p+seq) return 0x0001<<(16*p+seq)
else else
return 0 return 0
end end
elseif loc == LOCATION_SZONE then elseif loc == LOCATION_SZONE then
if seq<=4 then if seq<=4 then
return 0x10<<(16*p+seq) return 0x0100<<(16*p+seq)
else else
return 0 return 0
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment