Skip to content

Commit 2ddbdac

Browse files
authored
Fix bug in angular_project_library
1 parent 3ce80f0 commit 2ddbdac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xmipp/libraries/reconstruction/angular_project_library.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ void ProgAngularProjectLibrary::project_angle_vector (int my_init, int my_end, b
224224
for (std::size_t i = 0; i < numberOfRotTilt; ++i)
225225
{
226226
const auto index = my_init + i;
227-
const auto n = psiIndex*numberOfRotTilt + i;
227+
const auto n = psiIndex*numberOfRotTilt + index;
228228
if (verbose)
229229
progress_bar(n);
230230

0 commit comments

Comments
 (0)