Skip to content

Commit

Permalink
fix equality-based AppliesTo for third dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
coalsont committed Apr 15, 2022
1 parent e8fc5d4 commit 95d4338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion private/cifti_write_xml.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
if j < 3
appliesto = [appliesto ',' sprintf('%d', 2 - j)]; %#ok<AGROW>
else
appliesto = [appliesto ',' sprintf('%d', j)]; %#ok<AGROW>
appliesto = [appliesto ',' sprintf('%d', j - 1)]; %#ok<AGROW>
end
mapused(j) = true;
end
Expand Down

0 comments on commit 95d4338

Please sign in to comment.