Skip to content

Commit

Permalink
Bug fix: Backward compatibility with older Matlab for CAT12 import
Browse files Browse the repository at this point in the history
  • Loading branch information
ftadel committed Oct 24, 2019
1 parent 048120d commit 2afb2d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/license.html
Expand Up @@ -3,7 +3,7 @@

</head>
<body alink="#fff000" link="#fff000" vlink="#fff000">
<!-- LICENCE_START -->Version: 3.191019 (19-Oct-2019)<br>
<!-- LICENCE_START -->Version: 3.191024 (24-Oct-2019)<br>
<span style="font-style: italic;">COPYRIGHT &copy; 2000-2019
USC &amp; McGill University.<br>
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/version.txt
@@ -1,2 +1,2 @@
% Brainstorm
% v. 3.191019 (19-Oct-2019)
% v. 3.191024 (24-Oct-2019)
2 changes: 1 addition & 1 deletion toolbox/anatomy/tess_addsphere.m
Expand Up @@ -80,7 +80,7 @@
SphereMat.Vertices = SphereMat.Vertices .* 100;
end
% Convert to the same space as the FreeSurfer spheres
SphereVertices = SphereMat.Vertices ./ sMri.Voxsize;
SphereVertices = bst_bsxfun(@rdivide, SphereMat.Vertices, sMri.Voxsize);
end

% Check that the number of vertices match
Expand Down

0 comments on commit 2afb2d9

Please sign in to comment.