Skip to content

Commit

Permalink
Fixed incorrect size of inactive module container slice.
Browse files Browse the repository at this point in the history
Fixes #136.
  • Loading branch information
fnuecke committed Sep 21, 2023
1 parent b77b069 commit bfe753c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public ContainerSlice getActiveModules() {
}

public ContainerSlice getInactiveModules() {
return new ContainerSlice(this, ACTIVE_MODULE_COUNT, TOTAL_MODULE_COUNT);
return new ContainerSlice(this, ACTIVE_MODULE_COUNT, INACTIVE_MODULE_COUNT);
}

// --------------------------------------------------------------------- //
Expand Down

0 comments on commit bfe753c

Please sign in to comment.