Skip to content
Snippets Groups Projects
Commit 28911e04 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "dcc_parser: Fix loopoffset issue"

parents ac6d0745 e6c4b172
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ def read_config(config_pt):
else:
offset = 0
elif descriptor == loop_descriptor:
loop_offset = val & bm(config_loopoffset, 0)
loop_offset = val & bm(config_loopoffset - 1, 0)
loop_count = bvalsel(27, config_loopoffset, val)
if loop_offset == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment